From 5958a111ad3f6b865627cd9e3d72389aecf688b8 Mon Sep 17 00:00:00 2001 From: natsukium Date: Tue, 21 May 2024 09:46:54 +0900 Subject: [PATCH] python311Packages.nose-cprof: remove nose-cprof has been removed since it has not been maintained for 7 years and there are no dependent packages --- .../python-modules/nose-cprof/default.nix | 26 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 2 -- 3 files changed, 1 insertion(+), 28 deletions(-) delete mode 100644 pkgs/development/python-modules/nose-cprof/default.nix diff --git a/pkgs/development/python-modules/nose-cprof/default.nix b/pkgs/development/python-modules/nose-cprof/default.nix deleted file mode 100644 index 58ffc4a25c68..000000000000 --- a/pkgs/development/python-modules/nose-cprof/default.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ lib -, buildPythonPackage -, fetchPypi -, nose -}: - - -buildPythonPackage rec { - pname = "nose-cprof"; - version = "0.2.1"; - format = "setuptools"; - - src = fetchPypi { - inherit pname version; - sha256 = "0178834759b63dc50388444d4ff8d1ae84e1ba110bb167419afee6bf4699b119"; - }; - - buildInputs = [ nose ]; - - meta = with lib; { - description = "A python nose plugin to profile using cProfile rather than the default Hotshot profiler"; - homepage = "https://github.com/msherry/nose-cprof"; - license = licenses.bsd0; - }; - -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 0ecfbff848ca..e5cece57dcdc 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -302,6 +302,7 @@ mapAliases ({ ninja-python = ninja; # add 2022-08-03 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 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 + 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 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 nose_warnings_filters = nose-warnings-filters; # added 2024-01-07 notifymuch = throw "notifymuch has been promoted to a top-level attribute name: `pkgs.notifymuch`"; # added 2022-10-02 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bf7c81ccf94f..84cf73caf5a3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8865,8 +8865,6 @@ self: super: with self; { nose-cov = callPackage ../development/python-modules/nose-cov { }; - nose-cprof = callPackage ../development/python-modules/nose-cprof { }; - nose-exclude = callPackage ../development/python-modules/nose-exclude { }; nose-timer = callPackage ../development/python-modules/nose-timer { };