[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
104/233: gnu: python-jupyter-client: Update to 7.2.2.
From: |
guix-commits |
Subject: |
104/233: gnu: python-jupyter-client: Update to 7.2.2. |
Date: |
Sun, 24 Apr 2022 23:39:49 -0400 (EDT) |
apteryx pushed a commit to branch wip-ipython-polyglossia
in repository guix.
commit 9bb25225149a323d1e9a9693182c1910a5eb3c04
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Apr 12 17:33:51 2022 -0400
gnu: python-jupyter-client: Update to 7.2.2.
* gnu/packages/python-xyz.scm (python-jupyter-client-bootstrap): Make the
base
package definition, moving most fields. Update to 7.2.2.
[propagated-inputs]: Add python-entrypoints and python-nest-asyncio.
(python-jupyter-client): Inherit from python-jupyter-client-bootstrap,
adjusting accordingly.
[native-inputs]: Add python-pytest-asyncio.
---
gnu/packages/python-xyz.scm | 120 +++++++++++++++++++++++---------------------
1 file changed, 63 insertions(+), 57 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d2bcbcf2c3..4bb0ba1748 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8978,69 +8978,75 @@ without using the configuration machinery.")
"Jupyter core is the base package on which Jupyter projects rely.")
(license license:bsd-3)))
-(define-public python-jupyter-client
- (package
- (name "python-jupyter-client")
- (version "6.1.12")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "jupyter_client" version))
- (sha256
- (base32
- "10p7fcgvv9hvz9zical9wk68ks5ssak2ykbzx65wm1k1hk8a3g64"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'set-tool-file-names
- (lambda* (#:key inputs #:allow-other-keys)
- (let ((iproute (assoc-ref inputs "iproute")))
+;; Bootstrap variant of jupyter-client, which breaks the loop between ipykernel
+;; and jupyter-client by removing the former from its native-inputs and
+;; disabling tests.
+(define-public python-jupyter-client-bootstrap
+ (hidden-package
+ (package
+ (name "python-jupyter-client-bootstrap")
+ (version "7.2.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "jupyter_client" version))
+ (sha256
+ (base32
+ "12pbp177bfb3710y1a5598mwn8ffhyzmpll67m0nmalb98savnwg"))))
+ (build-system python-build-system)
+ (arguments
+ (list
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'set-tool-file-names
+ (lambda* (#:key inputs #:allow-other-keys)
(substitute* "jupyter_client/localinterfaces.py"
(("'ip'")
- (string-append "'" iproute "/sbin/ip'")))
- #t)))
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- ;; Some tests try to write to $HOME.
- (setenv "HOME" "/tmp")
- (invoke "pytest" "-vv")))))))
- (inputs
- `(("iproute" ,iproute)))
- (propagated-inputs
- (list python-dateutil python-jupyter-core python-pyzmq
- python-tornado-6 python-traitlets))
- (native-inputs
- `(("python-pytest" ,python-pytest)
- ("python-pytest-timeout" ,python-pytest-timeout)
- ("python-async-generator" ,python-async-generator)
- ("python-mock" ,python-mock)
- ("python-msgpack" ,python-msgpack)
- ("python-ipython" ,python-ipython)
- ("python-ipykernel" ,python-ipykernel-bootstrap)))
- (home-page "https://jupyter.org/")
- (synopsis "Jupyter protocol implementation and client libraries")
- (description
- "The @code{jupyter_client} package contains the reference implementation
+ (format #f "'~a'" (search-input-file inputs
"sbin/ip")))))))))
+ (inputs (list iproute))
+ (propagated-inputs
+ (list python-dateutil
+ python-entrypoints
+ python-jupyter-core
+ python-nest-asyncio
+ python-pyzmq
+ python-tornado-6
+ python-traitlets))
+ (home-page "https://jupyter.org/")
+ (synopsis "Jupyter protocol implementation and client libraries")
+ (description
+ "The @code{jupyter_client} package contains the reference implementation
of the Jupyter protocol. It also provides client and kernel management APIs
for working with kernels, and the @code{jupyter kernelspec} entrypoint for
installing @code{kernelspec}s for use with Jupyter frontends.")
- (license license:bsd-3)))
+ (license license:bsd-3))))
-;; Bootstrap variant of jupyter-client, which breaks the loop between ipykernel
-;; and jupyter-client by removing the former from its native-inputs and
-;; disabling tests.
-(define-public python-jupyter-client-bootstrap
- (let ((base python-jupyter-client))
- (hidden-package
- (package
- (inherit base)
- (name "python-jupyter-client-bootstrap")
- (arguments
- `(#:tests? #f
- ,@(package-arguments base)))
- (native-inputs `())))))
+(define-public python-jupyter-client
+ (let ((base python-jupyter-client-bootstrap))
+ (package
+ (inherit base)
+ (name "python-jupyter-client")
+ (arguments
+ (substitute-keyword-arguments (package-arguments base)
+ ((#:tests? _ #f)
+ #t)
+ ((#:phases phases #~%standard-phases)
+ #~(modify-phases #$phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ ;; Some tests try to write to $HOME.
+ (setenv "HOME" "/tmp")
+ (invoke "pytest" "-vv"))))))))
+ (native-inputs
+ (list python-pytest
+ python-pytest-asyncio
+ python-pytest-timeout
+ python-async-generator
+ python-ipython
+ python-ipykernel-bootstrap))
+ (properties (alist-delete 'hidden? (package-properties base))))))
(define-public python-ipykernel
(package
- 78/233: gnu: Add python-afdko., (continued)
- 78/233: gnu: Add python-afdko., guix-commits, 2022/04/24
- 80/233: gnu: Add skia., guix-commits, 2022/04/24
- 81/233: gnu: Add python-skia-pathops., guix-commits, 2022/04/24
- 82/233: gnu: Add python-ufolib2., guix-commits, 2022/04/24
- 84/233: gnu: Add python-ufo2ft., guix-commits, 2022/04/24
- 90/233: gnu: python-click: Update to 8.1.2 and honor TESTS?., guix-commits, 2022/04/24
- 91/233: gnu: python-flask: Update to 2.1.1., guix-commits, 2022/04/24
- 94/233: gnu: pylint: Run tests in parallel., guix-commits, 2022/04/24
- 99/233: gnu: Add python-pytest-forked-next., guix-commits, 2022/04/24
- 101/233: gnu: Add python-ipyparallel-bootstrap., guix-commits, 2022/04/24
- 104/233: gnu: python-jupyter-client: Update to 7.2.2.,
guix-commits <=
- 105/233: gnu: python-ipykernel: Update to 6.13.0., guix-commits, 2022/04/24
- 106/233: gnu: Add python-pytest-tornado., guix-commits, 2022/04/24
- 107/233: gnu: python-ipyparallel: Update to 8.2.1., guix-commits, 2022/04/24
- 108/233: gnu: python-anyio: Update to 3.5.0., guix-commits, 2022/04/24
- 110/233: gnu: python-bleach: Update to 5.0.0., guix-commits, 2022/04/24
- 112/233: gnu: Add texlive-lm-math., guix-commits, 2022/04/24
- 113/233: gnu: python-nbconvert: Update to 6.5.0., guix-commits, 2022/04/24
- 114/233: gnu: Add python-jupyter-server-mathjax., guix-commits, 2022/04/24
- 115/233: gnu: python-nbval: Fix build., guix-commits, 2022/04/24
- 119/233: gnu: Add python-docrepr., guix-commits, 2022/04/24