lol

python3Packages.nose-randomly: remove

It was archived and unmaintained since 2019

Moraxyc 1c8cabbb a2ab4d5a

+1 -36
-34
pkgs/development/python-modules/nose-randomly/default.nix
··· 1 - { lib 2 - , stdenv 3 - , buildPythonPackage 4 - , fetchPypi 5 - , nose 6 - , numpy 7 - }: 8 - 9 - buildPythonPackage rec { 10 - pname = "nose-randomly"; 11 - version = "1.2.6"; 12 - format = "setuptools"; 13 - 14 - src = fetchPypi { 15 - inherit pname version; 16 - sha256 = "7e483a3d79e13ae760d6ade57ae07ae45bb4b223b61a805e958b4c077116c67c"; 17 - }; 18 - 19 - nativeCheckInputs = [ numpy nose ]; 20 - 21 - checkPhase = if stdenv.isDarwin then '' 22 - # Work around "OSError: AF_UNIX path too long" 23 - TMPDIR="/tmp" nosetests 24 - '' else '' 25 - nosetests 26 - ''; 27 - 28 - meta = with lib; { 29 - description = "Nose plugin to randomly order tests and control random.seed"; 30 - homepage = "https://github.com/adamchainz/nose-randomly"; 31 - license = licenses.bsd3; 32 - maintainers = [ ]; 33 - }; 34 - }
+1
pkgs/top-level/python-aliases.nix
··· 307 307 nose-cov = throw "nose-cov has been removed, it was archived and unmaintained since 2012"; # added 2024-05-21 308 308 nose-cover3 = throw "nose-cover3 has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-02-16 309 309 nose-cprof = throw "nose-cprof has been removed since it has not been maintained for 7 years and there are no dependent packages"; # added 2024-05-21 310 + nose-randomly = throw "nose-randomly has been removed, it was archived and unmaintained since 2019"; # added 2024-05-22 310 311 nose_progressive = throw "nose_progressive has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; #added 2023-02-21 311 312 nose_warnings_filters = nose-warnings-filters; # added 2024-01-07 312 313 notifymuch = throw "notifymuch has been promoted to a top-level attribute name: `pkgs.notifymuch`"; # added 2022-10-02
-2
pkgs/top-level/python-packages.nix
··· 8869 8869 8870 8870 nose-pattern-exclude = callPackage ../development/python-modules/nose-pattern-exclude { }; 8871 8871 8872 - nose-randomly = callPackage ../development/python-modules/nose-randomly { }; 8873 - 8874 8872 nose-warnings-filters = callPackage ../development/python-modules/nose-warnings-filters { }; 8875 8873 8876 8874 nose-xunitmp = callPackage ../development/python-modules/nose-xunitmp { };