Unverified Commit 8cac4b00 authored by Emily's avatar Emily Committed by GitHub
Browse files

Merge pull request #330439 from emilazy/push-msxlunzvyqvo

python3Packages.{nose-pattern-exclude,nose-warnings-filters}: drop
parents 74aba63e 841556cf
Loading
Loading
Loading
Loading
+0 −29
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  nose,
}:

buildPythonPackage rec {
  pname = "nose-pattern-exclude";
  version = "0.1.3";
  format = "setuptools";

  propagatedBuildInputs = [ nose ];

  src = fetchPypi {
    inherit pname version;
    sha256 = "0apzxx8lavsdlxlpaxqw1snx5p7q8v5dfbip6v32f9pj2vyain1i";
  };

  # There are no tests
  doCheck = false;

  meta = with lib; {
    description = "Exclude specific files and directories from nosetests runs";
    homepage = "https://github.com/jakubroztocil/nose-pattern-exclude";
    license = licenses.bsd3;
    maintainers = with maintainers; [ jluttine ];
  };
}
+0 −34
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  isPy3k,
  nose,
}:

buildPythonPackage rec {
  pname = "nose-warnings-filters";
  version = "0.1.5";
  format = "setuptools";

  src = fetchPypi {
    pname = "nose_warnings_filters";
    inherit version;
    sha256 = "17dvfqfy2fm7a5cmiffw2dc3064kpx72fn5mlw01skm2rhn5nv25";
  };

  disabled = !isPy3k;

  propagatedBuildInputs = [ nose ];

  nativeCheckInputs = [ nose ];
  checkPhase = ''
    nosetests -v
  '';

  meta = {
    description = "Allow injecting warning filters during nosetest";
    homepage = "https://github.com/Carreau/nose_warnings_filters";
    license = lib.licenses.mit;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -334,7 +334,9 @@ mapAliases ({
  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
  nose-randomly = throw "nose-randomly has been removed, it was archived and unmaintained since 2019"; # added 2024-05-22
  nose-pattern-exclude = throw "nose-pattern-exclude has been removed as it has been unmaintained since 2014"; # added 2024-07-27
  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 = throw "nose-warnings-filters has been removed as it has been unmaintained since 2016"; # added 2024-07-27
  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
  Nuitka = nuitka; # added 2023-02-19
+0 −4
Original line number Diff line number Diff line
@@ -9121,10 +9121,6 @@ self: super: with self; {
  nose-timer = callPackage ../development/python-modules/nose-timer { };
  nose-pattern-exclude = callPackage ../development/python-modules/nose-pattern-exclude { };
  nose-warnings-filters = callPackage ../development/python-modules/nose-warnings-filters { };
  nose-xunitmp = callPackage ../development/python-modules/nose-xunitmp { };
  notebook = callPackage ../development/python-modules/notebook { };