Merge pull request #313333 from natsukium/django-nose/remove

python311Packages.django-nose: remove
This commit is contained in:
OTABI Tomoya 2024-05-26 14:38:06 +09:00 committed by GitHub
commit a4fe3ea233
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 1 additions and 34 deletions

View File

@ -1,32 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
nose,
django,
}:
buildPythonPackage rec {
pname = "django-nose";
version = "1.4.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "a4885cd002d65fd2de96e2bb2563ef477c3fbe207009360c015fca5c3b5561b7";
};
# vast dependency list
doCheck = false;
propagatedBuildInputs = [
django
nose
];
meta = with lib; {
description = "Provides all the goodness of nose in your Django tests";
homepage = "https://github.com/django-nose/django-nose";
license = licenses.bsd3;
};
}

View File

@ -131,6 +131,7 @@ mapAliases ({
django-hijack-admin = throw "django-hijack-admin has been removed, since it is no longer compatible to django-hijack"; # added 2023-06-21
django_modelcluster = django-modelcluster; # added 2022-04-02
django_nose = django-nose; # added 2023-07-25
django-nose = throw "django-nose has been removed since it has not been maintained and there are no dependent packages"; # added 2024-05-21
django_reversion = django-reversion; # added 2022-06-18
django_polymorphic = django-polymorphic; # added 2022-05-24
django_redis = django-redis; # added 2021-10-11

View File

@ -3278,8 +3278,6 @@ self: super: with self; {
django-ninja = callPackage ../development/python-modules/django-ninja { };
django-nose = callPackage ../development/python-modules/django-nose { };
django-oauth-toolkit = callPackage ../development/python-modules/django-oauth-toolkit { };
django-otp = callPackage ../development/python-modules/django-otp { };