python311Packages.django-sr: remove

django-sr has been removed since it has been unmaintained for 10 years
This commit is contained in:
natsukium 2024-05-26 17:52:01 +09:00
parent 65aacd0eae
commit 11e3c90f61
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53
3 changed files with 1 additions and 32 deletions

View File

@ -1,30 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
django,
nose,
}:
buildPythonPackage rec {
pname = "django-sr";
version = "0.0.4";
format = "setuptools";
meta = {
description = "Django settings resolver";
homepage = "https://github.com/jespino/django-sr";
license = lib.licenses.bsd3;
};
src = fetchPypi {
inherit pname version;
sha256 = "0d3yqppi1q3crcn9nxx58wzm4yw61d5m7435g6rb9wcamr9bi1im";
};
buildInputs = [
django
nose
];
propagatedBuildInputs = [ django ];
}

View File

@ -136,6 +136,7 @@ mapAliases ({
django_polymorphic = django-polymorphic; # added 2022-05-24
django_redis = django-redis; # added 2021-10-11
django_silk = django-silk; # added 2023-07-25
django-sr = throw "django-sr has been removed since it has been unmaintained for 10 years"; # added 2024-05-26
django_tagging = django-tagging; # added 2023-07-25
django_taggit = django-taggit; # added 2021-10-11
django_treebeard = django-treebeard; # added 2023-07-25

View File

@ -3364,8 +3364,6 @@ self: super: with self; {
django-sites = callPackage ../development/python-modules/django-sites { };
django-sr = callPackage ../development/python-modules/django-sr { };
django-statici18n = callPackage ../development/python-modules/django-statici18n { };
django-storages = callPackage ../development/python-modules/django-storages { };