diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2026-01-06 11:23:30 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:22:48 +0100 |
| commit | 0a70c5790f472c08d5224d8cd37d2b2886d63149 (patch) | |
| tree | 56c0a0d118b07709eb9624be2fbdca7f760eea51 /gnu | |
| parent | de3f863638c42520f83ecd2ce2016e85aa37c0c3 (diff) | |
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 <sharlatanus@gmail.com>
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/jupyter.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm index e9569fb70c2..beea4599564 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 |
