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