My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/django-cleanup/default.nix

20 lines
577 B

{ lib, buildPythonPackage, fetchPypi, django
}:
buildPythonPackage rec {
pname = "django-cleanup";
version = "6.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "922e06ef8839c92bd3ab37a84db6058b8764f3fe44dbb4487bbca941d288280a";
};
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 ];
};
}