mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: jupyter: Skip sanity check.
This is temporary and will be removed on the python-team branch. * gnu/packages/python-xyz.scm (jupyter)[arguments]: Delete 'sanity-check phase. Change-Id: I715d9161d7f23c1f72125aea8b4c0e1bb5490b1e
This commit is contained in:
parent
a39c4b7e38
commit
4b38f39022
1 changed files with 8 additions and 1 deletions
|
@ -18710,7 +18710,14 @@ (define-public jupyter
|
||||||
(base32
|
(base32
|
||||||
"0pwf3pminkzyzgx5kcplvvbvwrrzd3baa7lmh96f647k30rlpp6r"))))
|
"0pwf3pminkzyzgx5kcplvvbvwrrzd3baa7lmh96f647k30rlpp6r"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments '(#:tests? #f)) ; there are none.
|
(arguments
|
||||||
|
(list
|
||||||
|
#:tests? #f ;there are none.
|
||||||
|
#:phases
|
||||||
|
;; Because python-jsonschema has an old python-webcolor. Remove this
|
||||||
|
;; when python-team branch is merged.
|
||||||
|
'(modify-phases %standard-phases
|
||||||
|
(delete 'sanity-check))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-ipykernel
|
(list python-ipykernel
|
||||||
python-ipywidgets
|
python-ipywidgets
|
||||||
|
|
Loading…
Reference in a new issue