1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 nose, 6}: 7 8buildPythonPackage rec { 9 pname = "nose-pattern-exclude"; 10 version = "0.1.3"; 11 format = "setuptools"; 12 13 propagatedBuildInputs = [ nose ]; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "0apzxx8lavsdlxlpaxqw1snx5p7q8v5dfbip6v32f9pj2vyain1i"; 18 }; 19 20 # There are no tests 21 doCheck = false; 22 23 meta = with lib; { 24 description = "Exclude specific files and directories from nosetests runs"; 25 homepage = "https://github.com/jakubroztocil/nose-pattern-exclude"; 26 license = licenses.bsd3; 27 maintainers = with maintainers; [ jluttine ]; 28 }; 29}