Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pytest-pylint / default.nix
blob16a1fb92dd6fa3ca15534b3d0f9483732b8f0971
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy27
5 , pytest
6 , pylint
7 , six
8 , pytestrunner
9 , toml
12 buildPythonPackage rec {
13   pname = "pytest-pylint";
14   version = "0.18.0";
15   disabled = isPy27;
17   src = fetchPypi {
18     inherit pname version;
19     sha256 = "790c7a8019fab08e59bd3812db1657a01995a975af8b1c6ce95b9aa39d61da27";
20   };
22   nativeBuildInputs = [ pytestrunner ];
24   buildInputs = [ pytest ];
26   propagatedBuildInputs = [
27     pylint
28     six
29     toml
30   ];
32   # tests not included with release
33   doCheck = false;
35   meta = with lib; {
36     description = "pytest plugin to check source code with pylint";
37     homepage = "https://github.com/carsongee/pytest-pylint";
38     license = licenses.mit;
39     maintainers = [ maintainers.costrouc ];
40   };