mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
python310Packages.django-discover-runner: remove
This commit is contained in:
parent
702768bc28
commit
7e21be19d6
@ -5,7 +5,6 @@
|
|||||||
, dj-search-url
|
, dj-search-url
|
||||||
, django
|
, django
|
||||||
, django-cache-url
|
, django-cache-url
|
||||||
, django-discover-runner
|
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, importlib-metadata
|
, importlib-metadata
|
||||||
, mock
|
, mock
|
||||||
@ -36,7 +35,6 @@ buildPythonPackage rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
django-discover-runner
|
|
||||||
mock
|
mock
|
||||||
dj-database-url
|
dj-database-url
|
||||||
dj-email-url
|
dj-email-url
|
||||||
|
@ -1,27 +0,0 @@
|
|||||||
{ lib
|
|
||||||
, buildPythonPackage
|
|
||||||
, fetchPypi
|
|
||||||
, django
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
|
||||||
version = "1.0";
|
|
||||||
pname = "django-discover-runner";
|
|
||||||
|
|
||||||
src = fetchPypi {
|
|
||||||
inherit pname version;
|
|
||||||
sha256 = "0ba91fe722c256bcbfdeb36fac7eac0f27e5bfda55d98c4c1cf9ab62b5b084fe";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ django ];
|
|
||||||
|
|
||||||
# tests not included with release
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
homepage = "https://github.com/jezdez/django-discover-runner";
|
|
||||||
description = "A Django test runner based on unittest2's test discovery";
|
|
||||||
license = licenses.bsd0;
|
|
||||||
maintainers = [ maintainers.costrouc ];
|
|
||||||
};
|
|
||||||
}
|
|
@ -60,6 +60,7 @@ mapAliases ({
|
|||||||
django-sampledatahelper = throw "django-sampledatahelper was removed because it is no longer compatible to latest Django version"; # added 2022-07-18
|
django-sampledatahelper = throw "django-sampledatahelper was removed because it is no longer compatible to latest Django version"; # added 2022-07-18
|
||||||
django_2 = throw "Django 2 has reached it's projected EOL in 2022/04 and has therefore been removed."; # added 2022-03-05
|
django_2 = throw "Django 2 has reached it's projected EOL in 2022/04 and has therefore been removed."; # added 2022-03-05
|
||||||
django_appconf = django-appconf; # added 2022-03-03
|
django_appconf = django-appconf; # added 2022-03-03
|
||||||
|
django-discover-runner = throw "django-discover-runner was removed because it is no longer maintained."; # added 2022-11-21
|
||||||
django_environ = django-environ; # added 2021-12-25
|
django_environ = django-environ; # added 2021-12-25
|
||||||
django_extensions = django-extensions; # added 2022-01-09
|
django_extensions = django-extensions; # added 2022-01-09
|
||||||
django_guardian = django-guardian; # added 2022-05-19
|
django_guardian = django-guardian; # added 2022-05-19
|
||||||
|
@ -2489,8 +2489,6 @@ self: super: with self; {
|
|||||||
|
|
||||||
django-debug-toolbar = callPackage ../development/python-modules/django-debug-toolbar { };
|
django-debug-toolbar = callPackage ../development/python-modules/django-debug-toolbar { };
|
||||||
|
|
||||||
django-discover-runner = callPackage ../development/python-modules/django-discover-runner { };
|
|
||||||
|
|
||||||
django-dynamic-preferences = callPackage ../development/python-modules/django-dynamic-preferences { };
|
django-dynamic-preferences = callPackage ../development/python-modules/django-dynamic-preferences { };
|
||||||
|
|
||||||
django-encrypted-model-fields = callPackage ../development/python-modules/django-encrypted-model-fields { };
|
django-encrypted-model-fields = callPackage ../development/python-modules/django-encrypted-model-fields { };
|
||||||
|
Loading…
Reference in New Issue
Block a user