Unverified Commit 5958a111 authored by natsukium's avatar natsukium
Browse files

python311Packages.nose-cprof: remove

nose-cprof has been removed since it has not been maintained for 7 years
and there are no dependent packages
parent cf87bb22
Loading
Loading
Loading
Loading
+0 −26
Original line number Diff line number Diff line
{ 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 −0
Original line number Diff line number Diff line
@@ -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
+0 −2
Original line number Diff line number Diff line
@@ -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 { };