From 5d251ea9dc4acccbb5dd0e2f1ae4bc692cdb5201 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 19 Sep 2025 08:02:32 +0100 Subject: [PATCH] gnu: python-jupyterlab-widgets: Update to 3.0.11. * gnu/packages/jupyter.scm (python-jupyterlab-widgets): Update to 3.0.11. Change-Id: Ic401e3e56e8fe100d6b8be4eb6a5afecfd33c0ae --- gnu/packages/jupyter.scm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm index e211911aa94..dbbd3199403 100644 --- a/gnu/packages/jupyter.scm +++ b/gnu/packages/jupyter.scm @@ -864,15 +864,17 @@ endpoints—to Jupyter web applications.") (define-public python-jupyterlab-widgets (package (name "python-jupyterlab-widgets") - (version "3.0.10") + ;; XXX: Newer version requires python-jupyterlab, see guix/guix#2073. + (version "3.0.11") (source (origin (method url-fetch) (uri (pypi-uri "jupyterlab_widgets" version)) (sha256 - (base32 - "1h04kln8hp56svdjjk2hbsb0z1mby71cv4gss3wy89v7jw2arwh4")))) + (base32 "09zfvqsw0svm6r3i2lhklnx44s7j4i60bvcvkkr9m5iwb5wwcnnx")))) (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ;no tests in PyPI (native-inputs (list python-jupyter-packaging)) (home-page "https://github.com/jupyter-widgets/ipywidgets")