python311Packages.nose-cprof: remove

nose-cprof has been removed since it has not been maintained for 7 years
and there are no dependent packages
This commit is contained in:
natsukium
2024-05-21 09:46:54 +09:00
parent cf87bb22c5
commit 5958a111ad
3 changed files with 1 additions and 28 deletions
@@ -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;
};
}
+1
View File
@@ -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
-2
View File
@@ -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 { };