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-select2.nix | |
download | ar-nixpkgs-hs-c113e67cf12af0cadd0e2862fce58ae66efbcd33.tar.gz ar-nixpkgs-hs-c113e67cf12af0cadd0e2862fce58ae66efbcd33.tar.bz2 ar-nixpkgs-hs-c113e67cf12af0cadd0e2862fce58ae66efbcd33.zip |
Diffstat (limited to 'spejstore/python-modules/django-select2.nix')
-rw-r--r-- | spejstore/python-modules/django-select2.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/spejstore/python-modules/django-select2.nix b/spejstore/python-modules/django-select2.nix new file mode 100644 index 0000000..cc787c4 --- /dev/null +++ b/spejstore/python-modules/django-select2.nix @@ -0,0 +1,20 @@ +{ buildPythonPackage, fetchurl +, django_appconf +}: + +buildPythonPackage rec { + pname = "Django-Select2"; + version = "6.3.1"; + src = fetchurl { + url = "https://files.pythonhosted.org/packages/8d/16/28b9a8cb7add7570590c2d9f0f4bc2404515eaba028820cb1bc806bedcb8/django_select2-6.3.1-py3-none-any.whl"; + sha256 = "17xqvc2wh7x89d17c24v0i9c2i6ffwqs1q4i98br9jrj8fjksnky"; + }; + format = "wheel"; + doCheck = false; + buildInputs = []; + checkInputs = []; + nativeBuildInputs = []; + propagatedBuildInputs = [ + django_appconf + ]; +} |