1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 nose, 6 pep8, 7}: 8 9buildPythonPackage rec { 10 pname = "tissue"; 11 version = "0.9.2"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "7e34726c3ec8fae358a7faf62de172db15716f5582e5192a109e33348bd76c2e"; 17 }; 18 19 buildInputs = [ nose ]; 20 propagatedBuildInputs = [ pep8 ]; 21 22 meta = with lib; { 23 homepage = "https://github.com/WoLpH/tissue"; 24 description = "Tissue - automated pep8 checker for nose"; 25 license = licenses.lgpl2; 26 maintainers = with maintainers; [ domenkozar ]; 27 }; 28}