1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pylint, 6}: 7 8buildPythonPackage rec { 9 pname = "setuptools-lint"; 10 version = "0.6.0"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "16a1ac5n7k7sx15cnk03gw3fmslab3a7m74dc45rgpldgiff3577"; 16 }; 17 18 propagatedBuildInputs = [ pylint ]; 19 20 meta = with lib; { 21 description = "Package to expose pylint as a lint command into setup.py"; 22 homepage = "https://github.com/johnnoone/setuptools-pylint"; 23 license = licenses.bsdOriginal; 24 maintainers = with maintainers; [ nickhu ]; 25 }; 26}