nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python310Packages.django-cleanup: disabled on unsupported Python releases

authored by

Fabian Affolter and committed by
GitHub
80f24d93 867a6363

+4
+4
pkgs/development/python-modules/django-cleanup/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , django 5 + , pythonOlder 5 6 }: 6 7 7 8 buildPythonPackage rec { 8 9 pname = "django-cleanup"; 9 10 version = "7.0.0"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 10 14 11 15 src = fetchPypi { 12 16 inherit pname version;