Unverified Commit 583d561c authored by natsukium's avatar natsukium
Browse files

python311Packages.nosexcover: remove

nosexcover has been removed since it has not been maintained and there
are no dependent packages
parent 61799e2c
Loading
Loading
Loading
Loading
+0 −33
Original line number Diff line number Diff line
{
  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;
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -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
+0 −2
Original line number Diff line number Diff line
@@ -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 { };