me
/
guix
Archived
1
0
Fork 0

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.
master
Maxim Cournoyer 2022-03-30 18:05:08 -04:00
parent 9d31c06992
commit 812f2a185a
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 3 additions and 1 deletions

View File

@ -8776,7 +8776,9 @@ connect strings, then issue SQL commands within IPython or IPython Notebook.")
(arguments
`(#: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
(list python-pytest))
(home-page "https://ipython.org")