diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-01-01 15:14:55 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-01 15:14:55 +0100 |
commit | 4b38f39022f518372c06530c51fa2c627f8c9367 (patch) | |
tree | df59d81bc7db9e90f3e391ce878a44a380ca2bd0 | |
parent | a39c4b7e38ebe8f6c045f596e794aaec14a97545 (diff) |
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
-rw-r--r-- | gnu/packages/python-xyz.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ba22cbed9f..74396692ed 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -18710,7 +18710,14 @@ popular online obfuscators.") (base32 "0pwf3pminkzyzgx5kcplvvbvwrrzd3baa7lmh96f647k30rlpp6r")))) (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 (list python-ipykernel python-ipywidgets |