Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #313269 from natsukium/nose-cprof/remove

python311Packages.nose-cprof: remove

authored by Fabian Affolter and committed by GitHub 4fbbc17c 0b593aa4

+1 -28
-26
pkgs/development/python-modules/nose-cprof/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , nose 5 - }: 6 - 7 - 8 - buildPythonPackage rec { 9 - pname = "nose-cprof"; 10 - version = "0.2.1"; 11 - format = "setuptools"; 12 - 13 - src = fetchPypi { 14 - inherit pname version; 15 - sha256 = "0178834759b63dc50388444d4ff8d1ae84e1ba110bb167419afee6bf4699b119"; 16 - }; 17 - 18 - buildInputs = [ nose ]; 19 - 20 - meta = with lib; { 21 - description = "A python nose plugin to profile using cProfile rather than the default Hotshot profiler"; 22 - homepage = "https://github.com/msherry/nose-cprof"; 23 - license = licenses.bsd0; 24 - }; 25 - 26 - }
+1
pkgs/top-level/python-aliases.nix
··· 304 304 ninja-python = ninja; # add 2022-08-03 305 305 nosejs = throw "nosejs has been removed since it has not been maintained for 15 years and there are no dependent packages"; # added 2024-05-21 306 306 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 307 + 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 307 308 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 308 309 nose_warnings_filters = nose-warnings-filters; # added 2024-01-07 309 310 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
··· 8863 8863 8864 8864 nose-cov = callPackage ../development/python-modules/nose-cov { }; 8865 8865 8866 - nose-cprof = callPackage ../development/python-modules/nose-cprof { }; 8867 - 8868 8866 nose-exclude = callPackage ../development/python-modules/nose-exclude { }; 8869 8867 8870 8868 nose-timer = callPackage ../development/python-modules/nose-timer { };