My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/nose_warnings_filters/default.nix

31 lines
577 B

{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, nose
}:
buildPythonPackage rec {
pname = "nose_warnings_filters";
version = "0.1.5";
src = fetchPypi {
inherit pname version;
sha256 = "17dvfqfy2fm7a5cmiffw2dc3064kpx72fn5mlw01skm2rhn5nv25";
};
disabled = !isPy3k;
propagatedBuildInputs = [ nose ];
checkInputs = [ nose ];
checkPhase = ''
nosetests -v
'';
meta = {
description = "Allow injecting warning filters during nosetest";
homepage = "https://github.com/Carreau/nose_warnings_filters";
license = lib.licenses.mit;
};
}