pythonPackages.nose-pattern-exclude: init at 0.1.3

This commit is contained in:
Jaakko Luttinen 2018-10-27 14:53:41 +03:00 committed by Maximilian Bosch
parent 2fe089c870
commit d91e61865b
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E
2 changed files with 25 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -3076,6 +3076,8 @@ in {
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 { };
notebook = callPackage ../development/python-modules/notebook { };