diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-01-01 15:00:28 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-01 15:00:28 +0100 |
commit | cbc6fa98002757040fb74465d7b87a70c033a27b (patch) | |
tree | 1d641691c5c5d8e43daa99aaf0cdac568c5af11b /gnu/packages/jupyter.scm | |
parent | 44e7540663688fb4de77054beac4d743e790644b (diff) |
gnu: python-nbclassic: Skip sanity check.
This is temporary and will be removed on the python-team branch.
* gnu/packages/jupyter.scm (python-nbclassic)[arguments]: Delete 'sanity-check
phase.
Change-Id: I8a3190a849d192d9c7f1b2e903b55705622671f8
Diffstat (limited to 'gnu/packages/jupyter.scm')
-rw-r--r-- | gnu/packages/jupyter.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm index 9a3ef8b121..e068822c4b 100644 --- a/gnu/packages/jupyter.scm +++ b/gnu/packages/jupyter.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2019, 2022 Ludovic Courtès <ludo@gnu.org> -;;; Copyright © 2021-2024 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2021-2025 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2021 Hugo Lecomte <hugo.lecomte@inria.fr> ;;; Copyright © 2022 Marius Bakke <marius@gnu.org> ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com> @@ -64,6 +64,13 @@ (sha256 (base32 "1qrhzazq10dz64y9mawr3ns595fsdhrj1wvbb42xhmcl66r1xq8a")))) (build-system pyproject-build-system) + (arguments + (list + #: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-argon2-cffi python-ipykernel python-ipython-genutils |