mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 07:00:32 -05:00
gnu: python-flake8: Update to 4.0.1.
* gnu/packages/python-xyz.scm (python-flake8): Update to 4.0.1. [phases]{check}: Delete extraneous add-installed-pythonpath call. [propagated-inputs]: Re-indent. [native-inputs]: Remove python-mock.
This commit is contained in:
parent
f4696aeb94
commit
5022cf8e04
1 changed files with 7 additions and 5 deletions
|
@ -10229,13 +10229,15 @@ (define-public python-flake8
|
|||
(arguments
|
||||
`(#:phases (modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? inputs outputs #:allow-other-keys)
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(add-installed-pythonpath inputs outputs)
|
||||
(invoke "pytest" "-v")))))))
|
||||
(propagated-inputs (list python-pycodestyle python-entrypoints
|
||||
python-pyflakes python-mccabe))
|
||||
(native-inputs (list python-mock python-pytest))
|
||||
(propagated-inputs
|
||||
(list python-entrypoints
|
||||
python-mccabe
|
||||
python-pycodestyle
|
||||
python-pyflakes))
|
||||
(native-inputs (list python-pytest))
|
||||
(home-page "https://gitlab.com/pycqa/flake8")
|
||||
(synopsis "The modular source code checker: pep8, pyflakes and co")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue