Merge pull request #218391 from r-ryantm/auto-update/python310Packages.django-cleanup

python310Packages.django-cleanup: 6.0.0 -> 7.0.0

Changed files
+15 -4
pkgs
development
python-modules
django-cleanup
+15 -4
pkgs/development/python-modules/django-cleanup/default.nix
···
-
{ lib, buildPythonPackage, fetchPypi, django
+
{ lib
+
, buildPythonPackage
+
, fetchPypi
+
, django
+
, pythonOlder
}:
buildPythonPackage rec {
pname = "django-cleanup";
-
version = "6.0.0";
+
version = "7.0.0";
+
format = "setuptools";
+
+
disabled = pythonOlder "3.7";
+
src = fetchPypi {
inherit pname version;
-
sha256 = "922e06ef8839c92bd3ab37a84db6058b8764f3fe44dbb4487bbca941d288280a";
+
hash = "sha256-KKlp+InGYeug2UOJeGk5gPCUgsl5g70I7lKVXa6NceQ=";
};
-
nativeCheckInputs = [ django ];
+
nativeCheckInputs = [
+
django
+
];
meta = with lib; {
description = "Automatically deletes old file for FileField and ImageField. It also deletes files on models instance deletion";
homepage = "https://github.com/un1t/django-cleanup";
+
changelog = "https://github.com/un1t/django-cleanup/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ mmai ];
};