mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pythonPackages.django-picklefield: init at 0.3.2
This commit is contained in:
parent
28e186f429
commit
48855344c4
2 changed files with 20 additions and 0 deletions
|
@ -0,0 +1,18 @@
|
||||||
|
{ lib, buildPythonPackage, fetchPypi }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "django-picklefield";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
version = "0.3.2";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A pickled object field for Django";
|
||||||
|
homepage = https://github.com/gintas/django-picklefield;
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
};
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1qlsbp3798ii68ny9zlz2ppkna00jf7i4hmjal3p8433gi18md7s";
|
||||||
|
};
|
||||||
|
}
|
|
@ -8642,6 +8642,8 @@ in {
|
||||||
|
|
||||||
django-pglocks = callPackage ../development/python-modules/django-pglocks { };
|
django-pglocks = callPackage ../development/python-modules/django-pglocks { };
|
||||||
|
|
||||||
|
django-picklefield = callPackage ../development/python-modules/django-picklefield { };
|
||||||
|
|
||||||
django_polymorphic = callPackage ../development/python-modules/django-polymorphic { };
|
django_polymorphic = callPackage ../development/python-modules/django-polymorphic { };
|
||||||
|
|
||||||
django_tagging = callPackage ../development/python-modules/django_tagging { };
|
django_tagging = callPackage ../development/python-modules/django_tagging { };
|
||||||
|
|
Loading…
Reference in a new issue