mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-04 09:16:31 +01:00
gnu: python-traitlets: Update to 5.1.1.
* gnu/packages/python-xyz.scm (python-traitlets): Update to 5.1.1. [phases]{check}: Honor TESTS?. [propagated-inputs]: Delete field.
This commit is contained in:
parent
9d31c06992
commit
812f2a185a
1 changed files with 3 additions and 1 deletions
|
@ -8776,7 +8776,9 @@ (define-public python-traitlets
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'check (lambda _ (invoke "pytest" "-vv" "traitlets"))))))
|
(replace 'check (lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
(invoke "pytest" "-vv" "traitlets")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest))
|
(list python-pytest))
|
||||||
(home-page "https://ipython.org")
|
(home-page "https://ipython.org")
|
||||||
|
|
Loading…
Reference in a new issue