1{ lib 2, buildPythonPackage 3, fetchPypi 4, nose 5}: 6 7buildPythonPackage rec { 8 pname = "nose-exclude"; 9 version = "0.5.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "f78fa8b41eeb815f0486414f710f1eea0949e346cfb11d59ba6295ed69e84304"; 14 }; 15 16 propagatedBuildInputs = [ nose ]; 17 18 meta = { 19 license = lib.licenses.lgpl21; 20 description = "Exclude specific directories from nosetests runs"; 21 homepage = https://github.com/kgrandis/nose-exclude; 22 maintainers = with lib.maintainers; [ fridh ]; 23 }; 24}