diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-05-07 18:35:53 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:18:41 +0000 |
commit | bf740bd0c8d25c82aae7ba3488b9cdb5784ed6f6 (patch) | |
tree | 548a0e596b84c88c97f06749310858b5c97b39bf | |
parent | 4a3891e4a94251cbb5130f05ee9fd15fefbc7bca (diff) | |
download | guix-bf740bd0c8d25c82aae7ba3488b9cdb5784ed6f6.tar.gz guix-bf740bd0c8d25c82aae7ba3488b9cdb5784ed6f6.zip |
gnu: python-jupyter-client: Update to 7.4.4.
* gnu/packages/python-xyz.scm (python-jupyter-client,
python-jupyter-client-bootstrap): Update to 7.4.4.
[native-inputs]: Add python-hatchling; remove python-setuptools and
python-wheel.
Change-Id: I0e2d92762a03af2b8b64434a45f56f998f27a772
-rw-r--r-- | gnu/packages/python-xyz.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d15f248022..021a1367e8 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -12781,14 +12781,14 @@ container data structures in Python).") (hidden-package (package (name "python-jupyter-client-bootstrap") - (version "7.2.2") + (version "7.4.4") (source (origin (method url-fetch) (uri (pypi-uri "jupyter_client" version)) (sha256 (base32 - "12pbp177bfb3710y1a5598mwn8ffhyzmpll67m0nmalb98savnwg")))) + "0ck8fb0d582r8izkcn7087zmbmmqf9jkv2abd8p44867k9hdn5jn")))) (build-system pyproject-build-system) (arguments (list @@ -12817,7 +12817,8 @@ container data structures in Python).") python-pyzmq python-tornado-6 python-traitlets)) - (native-inputs (list python-setuptools python-wheel)) + (native-inputs + (list python-hatchling)) (home-page "https://jupyter.org/") (synopsis "Jupyter protocol implementation and client libraries") (description @@ -12852,14 +12853,13 @@ installing @code{kernelspec}s for use with Jupyter frontends.") ;; information. "not test_start_parallel_process_kernels")))))))) (native-inputs - (list python-pytest + (list python-hatchling + python-pytest python-pytest-asyncio python-pytest-timeout python-async-generator python-ipython - python-ipykernel-bootstrap - python-setuptools - python-wheel)) + python-ipykernel-bootstrap)) (properties (alist-delete 'hidden? (package-properties base)))))) (define-public python-ipykernel |