mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 04:13:12 +00:00
python311Packages.nosexcover: remove
nosexcover has been removed since it has not been maintained and there are no dependent packages
This commit is contained in:
parent
61799e2c0b
commit
583d561c79
@ -1,33 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
pythonAtLeast,
|
||||
coverage,
|
||||
nose,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "nosexcover";
|
||||
version = "1.0.11";
|
||||
format = "setuptools";
|
||||
|
||||
# requires the imp module
|
||||
disabled = pythonAtLeast "3.12";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "298c3c655da587f6cab8a666e9f4b150320032431062dea91353988d45c8b883";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
coverage
|
||||
nose
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Extends nose.plugins.cover to add Cobertura-style XML reports";
|
||||
homepage = "https://github.com/cmheisel/nose-xcover/";
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
@ -305,6 +305,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-cov = throw "nose-cov has been removed, it was archived and unmaintained since 2012"; # added 2024-05-21
|
||||
nosexcover = throw "nosexcover has been removed since it has not been maintained 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-exclude = throw "nose-exclude has been removed since it has not been maintained since 2016"; # added 2024-05-21
|
||||
|
@ -8871,8 +8871,6 @@ self: super: with self; {
|
||||
|
||||
nose-xunitmp = callPackage ../development/python-modules/nose-xunitmp { };
|
||||
|
||||
nosexcover = callPackage ../development/python-modules/nosexcover { };
|
||||
|
||||
notebook = callPackage ../development/python-modules/notebook { };
|
||||
|
||||
notebook-shim = callPackage ../development/python-modules/notebook-shim { };
|
||||
|
Loading…
Reference in New Issue
Block a user