Merge pull request #113372 from fabaff/bump-pylint

python3Packages.pylint: 2.6.0 -> 2.6.2
This commit is contained in:
Sandro 2021-02-17 13:40:11 +01:00 committed by GitHub
commit ed002061b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -3,13 +3,13 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pylint"; pname = "pylint";
version = "2.6.0"; version = "2.6.2";
disabled = pythonOlder "3.5"; disabled = pythonOlder "3.5";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "bb4a908c9dadbc3aac18860550e870f58e1a02c9f2c204fdf5693d73be061210"; sha256 = "sha256-cYt0eG6n7QeqDFi/VyFU1Geflg0m6WQcwd4gSjC4f8k=";
}; };
nativeBuildInputs = [ pytestrunner installShellFiles ]; nativeBuildInputs = [ pytestrunner installShellFiles ];