diff options
Diffstat (limited to 'spejstore/python-modules/django-hstore.nix')
-rw-r--r-- | spejstore/python-modules/django-hstore.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/spejstore/python-modules/django-hstore.nix b/spejstore/python-modules/django-hstore.nix new file mode 100644 index 0000000..3e44901 --- /dev/null +++ b/spejstore/python-modules/django-hstore.nix @@ -0,0 +1,20 @@ +{ buildPythonPackage, fetchgit +, psycopg2 +, django-discover-runner +}: + +buildPythonPackage rec { + pname = "django-hstore"; + version = "1.5a0"; + src = fetchgit { + url = "https://github.com/djangonauts/django-hstore"; + rev = "aac755f587ff8ea95c1f43e7f3df8e339b848b6b"; + sha256 = "03q3a03nngfi8x0xsja762ccdf242z29xmbl78yhz1xd6lmhj71s"; + }; + format = "setuptools"; + doCheck = false; + buildInputs = []; + checkInputs = []; + nativeBuildInputs = []; + propagatedBuildInputs = [ psycopg2 django-discover-runner ]; +} |