spejstore/python-modules/django-select2.nix

21 lines
536 B
Nix

{ 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
];
}