From 81f2adac9baee1895926b0f4764c5fcb2ed91b4e Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 16 Dec 2025 15:09:26 +0000 Subject: [PATCH] gnu: python-notebook: Fix build. * gnu/packages/jupyter.scm (python-notebook)[arguments] : Skip one test. [propagated-inputs]: Swap python-jupyter-client@8 with python-jupyter-client@7. Change-Id: I37b420120395924c524f1936723e2a2c6228761d Signed-off-by: Rutherther --- gnu/packages/jupyter.scm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm index 4a1e1b220d1e1886bbe6f034928ef1a82a867da3..28119540aa95c644f7db655ab5e38a9d265a53bc 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: + ;; . (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