Unverified Commit 2d6c4a31 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #313268 from natsukium/nosexcover/remove

python311Packages.nosexcover: remove 
parents 21c63bf6 583d561c
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;
  };
}
+4 −5
Original line number Diff line number Diff line
@@ -3,8 +3,7 @@
  fetchPypi,
  buildPythonPackage,
  setuptools,
  nosexcover,
  pythonOlder,
  pytestCheckHook,
}:

buildPythonPackage rec {
@@ -17,11 +16,11 @@ buildPythonPackage rec {
    hash = "sha256-jXkCjqbMEx2l6rCZpdlamY1DxneZVv/+O0VQQJEQdto=";
  };

  nativeBuildInputs = [ setuptools ];
  build-system = [ setuptools ];

  doCheck = pythonOlder "3.12";
  pythonImportsCheck = [ "smmap" ];

  nativeCheckInputs = [ nosexcover ];
  nativeCheckInputs = [ pytestCheckHook ];

  meta = {
    description = "A pure python implementation of a sliding window memory map manager";
+1 −0
Original line number Diff line number Diff line
@@ -306,6 +306,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
@@ -8900,8 +8900,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 { };