diff options
author | Robert Gerus <ar@bash.org.pl> | 2020-03-08 19:16:42 +0100 |
---|---|---|
committer | Robert Gerus <ar@bash.org.pl> | 2020-03-08 19:16:42 +0100 |
commit | c113e67cf12af0cadd0e2862fce58ae66efbcd33 (patch) | |
tree | 08660646915e3c65b19540c162b964c18760269d /spejstore/python-modules/django-hstore.nix | |
download | ar-nixpkgs-hs-master.tar.gz ar-nixpkgs-hs-master.tar.bz2 ar-nixpkgs-hs-master.zip |
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 ]; +} |