django-soft-delete: init at 1.0.13

This commit is contained in:
Pyrox
2024-06-19 12:37:07 -04:00
parent 28e8f35ed7
commit 0bffe0f435
2 changed files with 33 additions and 0 deletions
@@ -0,0 +1,31 @@
{
lib,
buildPythonPackage,
fetchPypi,
django,
setuptools,
}:
buildPythonPackage rec {
pname = "django-soft-delete";
version = "1.0.13";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-RDwApUwG0jb/iAbDJgJD13XMU2WB1zd8J4UICxBBzh0=";
};
dependencies = [ django ];
build-system = [ setuptools ];
# No tests
doCheck = false;
meta = {
description = "Soft delete models, managers, queryset for Django";
homepage = "https://github.com/san4ezy/django_softdelete";
license = lib.licenses.mit;
};
}
+2
View File
@@ -3395,6 +3395,8 @@ self: super: with self; {
django-sites = callPackage ../development/python-modules/django-sites { };
django-soft-delete = callPackage ../development/python-modules/django-soft-delete { };
django-statici18n = callPackage ../development/python-modules/django-statici18n { };
django-storages = callPackage ../development/python-modules/django-storages { };