pythonPackages.nose-pattern-exclude: init at 0.1.3
This commit is contained in:
parent
2fe089c870
commit
d91e61865b
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi, nose }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "nose-pattern-exclude";
|
||||||
|
version = "0.1.3";
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ nose ];
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0apzxx8lavsdlxlpaxqw1snx5p7q8v5dfbip6v32f9pj2vyain1i";
|
||||||
|
};
|
||||||
|
|
||||||
|
# There are no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -3076,6 +3076,8 @@ in {
|
|||||||
|
|
||||||
nose-cprof = callPackage ../development/python-modules/nose-cprof { };
|
nose-cprof = callPackage ../development/python-modules/nose-cprof { };
|
||||||
|
|
||||||
|
nose-pattern-exclude = callPackage ../development/python-modules/nose-pattern-exclude { };
|
||||||
|
|
||||||
nose_warnings_filters = callPackage ../development/python-modules/nose_warnings_filters { };
|
nose_warnings_filters = callPackage ../development/python-modules/nose_warnings_filters { };
|
||||||
|
|
||||||
notebook = callPackage ../development/python-modules/notebook { };
|
notebook = callPackage ../development/python-modules/notebook { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user