gnu: python-pylint: Update to 2.12.2.

* gnu/packages/check.scm (python-pylint): Update to 2.12.2.
[phases]{check}: Override phase.
[native-inputs]: Remove python-pytest-benchmark, python-pytest-runner.
[propagated-inputs]: Add python-platformdirs, python-typing-extensions.
[synopsis]: Streamline.
This commit is contained in:
Maxim Cournoyer 2021-12-20 11:00:15 -05:00
parent b9839ee1c5
commit 2fa2b91d59
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -2255,7 +2255,7 @@ (define-public python2-coverage-test-runner
(define-public python-pylint
(package
(name "python-pylint")
(version "2.9.6")
(version "2.12.2")
(source
(origin
(method git-fetch)
@ -2264,15 +2264,31 @@ (define-public python-pylint
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "15yw69v1cj6zkndk60c2g0dgl0khh8bfm1lrwhjffpdjfc7nkc9a"))))
(base32 "0spmy7j1vvh55shzgma80q61y0d1cj45dcgslb4g5w3y602miq5i"))))
(build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
;; The unused but collected 'primer'-related test files require
;; the extraneous 'git' Python module; remove them.
(delete-file "tests/primer/test_primer_external.py")
(delete-file "tests/testutils/test_package_to_lint.py")
(setenv "HOME" "/tmp")
(invoke "pytest" "-k" "test_functional")))))))
(native-inputs
(list python-pytest python-pytest-benchmark python-pytest-runner))
(list python-pytest))
(propagated-inputs
(list python-astroid python-isort python-mccabe python-toml))
(list python-astroid
python-isort
python-mccabe
python-platformdirs
python-toml
python-typing-extensions))
(home-page "https://github.com/PyCQA/pylint")
(synopsis "Python source code analyzer which looks for coding standard
errors")
(synopsis "Advanced Python code static checker")
(description "Pylint is a Python source code analyzer which looks
for programming errors, helps enforcing a coding standard and sniffs
for some code smells (as defined in Martin Fowler's Refactoring book).