guix_mirror_bot pushed a commit to branch next-master
in repository guix.
commit 20b22302b11e3448dcdc7345746d8c1498d827b6
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Jan 6 11:23:30 2026 +0100
gnu: jupyter: Switch to pyproject.
* gnu/packages/jupyter.scm (jupyter):
[build-system]: Switch to pyproject-build-system.
[arguments]: Improve comment and style.
[native-inputs]: Add python-setuptools.
Change-Id: I6056c60a1ddb822b9b80bee606add58420246c4e
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/jupyter.scm | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm
index 38b70f77ca..ad3c30513c 100644
--- a/gnu/packages/jupyter.scm
+++ b/gnu/packages/jupyter.scm
@@ -87,15 +87,16 @@
(sha256
(base32
"0pwf3pminkzyzgx5kcplvvbvwrrzd3baa7lmh96f647k30rlpp6r"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(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))))
+ ;; TODO python-team: Because python-jsonschema has an old
+ ;; python-webcolor. Remove this when python-team branch is merged.
+ #~(modify-phases %standard-phases
+ (delete 'sanity-check))))
+ (native-inputs (list python-setuptools))
(propagated-inputs
(list python-ipykernel
python-ipywidgets