Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / setuptools-lint / default.nix
blobf1eb2903f03ee1b8c6c8823472590ed1b0928184
1 { lib, buildPythonPackage, fetchPypi, pylint }:
3 buildPythonPackage rec {
4   pname = "setuptools-lint";
5   version = "0.6.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "16a1ac5n7k7sx15cnk03gw3fmslab3a7m74dc45rgpldgiff3577";
10   };
12   propagatedBuildInputs = [ pylint ];
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   };