diff options
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 + ]; +} |