mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 09:44:18 +00:00
Merge pull request #313269 from natsukium/nose-cprof/remove
python311Packages.nose-cprof: remove
This commit is contained in:
commit
4fbbc17ccf
@ -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;
|
||||
};
|
||||
|
||||
}
|
@ -304,6 +304,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
|
||||
|
@ -8863,8 +8863,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user