depot/third_party/nixpkgs/pkgs/development/python-modules/django-cleanup/default.nix
Default email ce641f4048 Project import generated by Copybara.
GitOrigin-RevId: bc5d68306b40b8522ffb69ba6cff91898c2fbbff
2021-12-06 17:07:01 +01:00

20 lines
577 B
Nix

{ lib, buildPythonPackage, fetchPypi, django
}:
buildPythonPackage rec {
pname = "django-cleanup";
version = "5.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "909d10ff574f5ce1a40fa63bd5c94c9ed866fd7ae770994c46cdf66c3db3e846";
};
checkInputs = [ 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";
license = licenses.mit;
maintainers = with maintainers; [ mmai ];
};
}