python310Packages.django-cleanup: disabled on unsupported Python releases

This commit is contained in:
Fabian Affolter 2023-02-26 12:03:31 +01:00 committed by GitHub
parent 867a6363d4
commit 80f24d93da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,11 +2,15 @@
, buildPythonPackage
, fetchPypi
, django
, pythonOlder
}:
buildPythonPackage rec {
pname = "django-cleanup";
version = "7.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;