python311Packages.django-reversion: switch to pypa build

This commit is contained in:
natsukium 2023-12-31 12:53:14 +09:00
parent eaeaeffc51
commit 991ee472df
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -3,12 +3,13 @@
, fetchPypi
, django
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "django-reversion";
version = "5.0.9";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
@ -17,6 +18,10 @@ src = fetchPypi {
hash = "sha256-oXJC1o7oAfvuaJ0sKEqpWN1u9LiigA7AYcgbFnTxwBs=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
django
];