summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-12-16 15:09:26 +0000
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:19:39 +0100
commit81f2adac9baee1895926b0f4764c5fcb2ed91b4e (patch)
treebaa0de8c05a14202143e7fa57d56f6be0842ce73 /gnu
parente96c1f3cc4496e5ceabb26b83ee50aae79ed7ff4 (diff)
gnu: python-notebook: Fix build.
* gnu/packages/jupyter.scm (python-notebook)[arguments] <test-flags>: Skip one test. [propagated-inputs]: Swap python-jupyter-client@8 with python-jupyter-client@7. Change-Id: I37b420120395924c524f1936723e2a2c6228761d Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/jupyter.scm10
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm
index 4a1e1b220d..28119540aa 100644
--- a/gnu/packages/jupyter.scm
+++ b/gnu/packages/jupyter.scm
@@ -317,6 +317,8 @@ the namespace @code{/nbclassic/}.")
(define-public python-notebook
(package
(name "python-notebook")
+ ;; XXX: Newer version requires Jupyterlab, see:
+ ;; <https://codeberg.org/guix/guix/pulls/2073>.
(version "6.5.7")
(source (origin
(method url-fetch)
@@ -327,6 +329,7 @@ the namespace @code{/nbclassic/}.")
(build-system pyproject-build-system)
(arguments
(list
+ ;; tests: 307 passed, 7 skipped, 16 deselected, 9 warnings
#:test-flags
'(list "-k" (string-append
;; TODO: This tests fails because nbconvert does not
@@ -338,7 +341,10 @@ the namespace @code{/nbclassic/}.")
" and not test_merge_config"
" and not test_load_ordered"
" and not test_list_running_sock_servers"
- " and not test_run")
+ " and not test_run"
+ ;; tornado.simple_httpclient.HTTPTimeoutError: Timeout
+ ;; during request
+ " and not test_connections")
;; These tests require a browser.
"--ignore=notebook/tests/selenium")
#:phases
@@ -370,7 +376,7 @@ the namespace @code{/nbclassic/}.")
python-ipykernel
python-ipython-genutils
python-jinja2
- python-jupyter-client
+ python-jupyter-client-7
python-jupyter-core
python-nest-asyncio
python-nbclassic