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