mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 09:44:18 +00:00
python3Packages.nose-warnings-filters: drop
This commit is contained in:
parent
d9a2cab2ab
commit
841556cfb5
@ -1,34 +0,0 @@
|
||||
{
|
||||
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;
|
||||
};
|
||||
}
|
@ -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
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user