Commit 841556cf authored by Emily's avatar Emily
Browse files

python3Packages.nose-warnings-filters: drop

parent d9a2cab2
Loading
Loading
Loading
Loading
+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;
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -336,6 +336,7 @@ mapAliases ({
  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 −2
Original line number Diff line number Diff line
@@ -9117,8 +9117,6 @@ self: super: with self; {
  nose-timer = callPackage ../development/python-modules/nose-timer { };
  nose-warnings-filters = callPackage ../development/python-modules/nose-warnings-filters { };
  nose-xunitmp = callPackage ../development/python-modules/nose-xunitmp { };
  notebook = callPackage ../development/python-modules/notebook { };