Martin Weinelt 2023-01-02 16:57:45 +01:00
parent a25311986e
commit 5f65eb06cc

View file

@ -16,6 +16,7 @@
, tomlkit , tomlkit
, typing-extensions , typing-extensions
, gitpython , gitpython
, py
, pytest-timeout , pytest-timeout
, pytest-xdist , pytest-xdist
, pytestCheckHook , pytestCheckHook
@ -23,7 +24,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pylint"; pname = "pylint";
version = "2.15.5"; version = "2.15.9";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.7.2"; disabled = pythonOlder "3.7.2";
@ -32,7 +33,7 @@ buildPythonPackage rec {
owner = "PyCQA"; owner = "PyCQA";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-dchzwMaUhHB1TqcaMZO9tCZ4KA5I1T+tdkGOxikm5AY="; hash = "sha256-T+om5rrG0Gjyr05L5X4j82/S11Q7JBUDNOm4gVEQ494=";
}; };
patches = [ patches = [
@ -75,6 +76,7 @@ buildPythonPackage rec {
checkInputs = [ checkInputs = [
gitpython gitpython
# https://github.com/PyCQA/pylint/blob/main/requirements_test_min.txt # https://github.com/PyCQA/pylint/blob/main/requirements_test_min.txt
py
pytest-timeout pytest-timeout
pytest-xdist pytest-xdist
pytestCheckHook pytestCheckHook