Unverified Commit 0bffe0f4 authored by Pyrox's avatar Pyrox
Browse files

django-soft-delete: init at 1.0.13

parent 28e8f35e
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };