me
/
guix
Archived
1
0
Fork 0

gnu: python-pycodestyle: Update to 2.8.0.

* gnu/packages/python-xyz.scm (python-pycodestyle): Update to 2.8.0.
[arguments]: Respect tests?.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Petr Hodina 2022-06-06 22:13:03 +02:00 committed by Efraim Flashner
parent 2680f30a2e
commit 2660f99b57
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 5 additions and 4 deletions

View File

@ -6468,21 +6468,22 @@ a simple netcat replacement with chaining support.")
(define-public python-pycodestyle (define-public python-pycodestyle
(package (package
(name "python-pycodestyle") (name "python-pycodestyle")
(version "2.7.0") (version "2.8.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "pycodestyle" version)) (uri (pypi-uri "pycodestyle" version))
(sha256 (sha256
(base32 (base32
"1vqwmzmjdv331kmfq3q9j3as2x7r2r49lf83r9w4147pdg8c32f3")))) "0zxyrg8029lzjhima6l5nk6y0z6lm5wfp9qchz3s33j3xx3mipgd"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:phases `(#:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(replace 'check (replace 'check
(lambda _ (lambda* (#:key tests? #:allow-other-keys)
(invoke "pytest" "-vv")))))) (when tests?
(invoke "pytest" "-vv")))))))
(native-inputs (native-inputs
(list python-pytest)) (list python-pytest))
(home-page "https://pycodestyle.readthedocs.io/") (home-page "https://pycodestyle.readthedocs.io/")