python: pylint: 2.0.1 -> 2.1.1

This commit is contained in:
Frederik Rietdijk 2018-08-13 09:30:48 +02:00
parent ac916967d4
commit 99ae554b9a

View File

@ -3,13 +3,13 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pylint"; pname = "pylint";
version = "2.0.1"; version = "2.1.1";
disabled = pythonOlder "3.4"; disabled = pythonOlder "3.4";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "2c90a24bee8fae22ac98061c896e61f45c5b73c2e0511a4bf53f99ba56e90434"; sha256 = "31142f764d2a7cd41df5196f9933b12b7ee55e73ef12204b648ad7e556c119fb";
}; };
checkInputs = [ pytest pytestrunner pytest_xdist pyenchant ]; checkInputs = [ pytest pytestrunner pytest_xdist pyenchant ];