fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
29 lines
623 B
Nix
29 lines
623 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
nose,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nose-pattern-exclude";
|
|
version = "0.1.3";
|
|
format = "setuptools";
|
|
|
|
propagatedBuildInputs = [ nose ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0apzxx8lavsdlxlpaxqw1snx5p7q8v5dfbip6v32f9pj2vyain1i";
|
|
};
|
|
|
|
# There are no tests
|
|
doCheck = false;
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|