diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-05-10 10:07:29 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-14 23:53:12 +0100 |
commit | 7333b974bba31bafaba2fba8c6c1db1666f9718a (patch) | |
tree | 42e39db1d6fcae76c0bd35ca12b1ac6d9e2c98cb | |
parent | 4f439efa65966bd4f6867f5a3efa269b346a4b50 (diff) |
gnu: python-widgetsnbextension: Update to 4.0.10.
* gnu/packages/python-xyz.scm (python-widgetsnbextension): Update to 4.0.10.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-jupyter-packaging, python-setuptools, and
python-wheel.
[propagated-inputs]: Remove python-notebook.
Change-Id: I63519916b234a45b352d0ea850566a1de42315c7
-rw-r--r-- | gnu/packages/python-xyz.scm | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ee41609699..07c3f5c96d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -18047,17 +18047,19 @@ interactive computing.") (define-public python-widgetsnbextension (package (name "python-widgetsnbextension") - (version "3.5.1") + (version "4.0.10") (source (origin (method url-fetch) (uri (pypi-uri "widgetsnbextension" version)) (sha256 (base32 - "1ismyaxbv9d56yqqqb8xl58hg0iq0bbyy014a53y1g3hfbc8g7q7")))) - (build-system python-build-system) - (propagated-inputs - (list python-notebook)) + "13v88h3cvlf4cs70j568abr04w0bzckl56k9iqx1iadrydgnq6b4")))) + (build-system pyproject-build-system) + (native-inputs + (list python-jupyter-packaging + python-setuptools + python-wheel)) (home-page "https://ipython.org") (synopsis "IPython HTML widgets for Jupyter") (description "This package provides interactive HTML widgets for Jupyter |