[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
168/232: gnu: python-jupyter-kernel-mgmt: Update to 0.5.1 and disable te
From: |
guix-commits |
Subject: |
168/232: gnu: python-jupyter-kernel-mgmt: Update to 0.5.1 and disable tests. |
Date: |
Sun, 24 Apr 2022 23:59:07 -0400 (EDT) |
apteryx pushed a commit to branch wip-ipython-polyglossia
in repository guix.
commit ee911a65857e8f717d09bdcc8ced25a0bde88cbe
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Mon Apr 18 22:12:50 2022 -0400
gnu: python-jupyter-kernel-mgmt: Update to 0.5.1 and disable tests.
* gnu/packages/jupyter.scm (python-jupyter-kernel-mgmt): Update to 0.5.1.
[arguments]: New field.
[propagated-inputs]: Add python-tornado.
[native-inputs]: Remove python-mock. Add python-async-generator and
python-pytest-asyncio.
---
gnu/packages/jupyter.scm | 23 ++++++++++++++++++++---
1 file changed, 20 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm
index f6b82db4ba..023dc2aeb2 100644
--- a/gnu/packages/jupyter.scm
+++ b/gnu/packages/jupyter.scm
@@ -82,23 +82,40 @@ protocol} to be used by both clients and kernels.")
(define-public python-jupyter-kernel-mgmt
(package
(name "python-jupyter-kernel-mgmt")
- (version "0.4.0")
+ (version "0.5.1")
(source (origin
(method url-fetch)
(uri (pypi-uri "jupyter_kernel_mgmt" version))
(sha256
(base32
- "0i7a78dn89ca8h0a42giyxwcmk6y4wrdr7q8h2ax9vybb84c795q"))))
+ "0977ixfi1pzjgy84hl0zycg4wpllmid98fhzcpy0lxd322w4sl7x"))))
(build-system python-build-system)
+ (arguments
+ (list
+ ;; There are 8 test failures, most of them in 'test_client_loop.py'
+ ;; (see: https://github.com/takluyver/jupyter_kernel_mgmt/issues/48).
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (setenv "HOME" "/tmp")
+ (invoke "pytest" "-vv" "jupyter_kernel_mgmt")))))))
(propagated-inputs
(list python-dateutil
python-entrypoints
python-jupyter-core
python-jupyter-protocol
python-pyzmq
+ python-tornado
python-traitlets))
(native-inputs
- (list python-ipykernel python-ipython python-mock python-pytest))
+ (list python-async-generator
+ python-ipykernel
+ python-ipython
+ python-pytest
+ python-pytest-asyncio))
(home-page "https://jupyter.org")
(synopsis "Discover, launch, and communicate with Jupyter kernels")
(description
- 68/232: gnu: python-setuptools: Update to 62.0.0., (continued)
- 68/232: gnu: python-setuptools: Update to 62.0.0., guix-commits, 2022/04/24
- 69/232: gnu: python-pathpy: Deprecate by python-path., guix-commits, 2022/04/24
- 91/232: gnu: python-flask: Update to 2.1.1., guix-commits, 2022/04/24
- 96/232: gnu: Add python-pydevd., guix-commits, 2022/04/24
- 138/232: gnu: Add python-cbor2., guix-commits, 2022/04/24
- 139/232: gnu: python-httpcore: Update to 0.14.7 and enable tests., guix-commits, 2022/04/24
- 140/232: gnu: Add python-httpcore-bootstrap., guix-commits, 2022/04/24
- 155/232: gnu: python-numpy: Update to 1.21.6 and parallelize build/tests., guix-commits, 2022/04/24
- 157/232: gnu: python-numba: Update to 0.55.1., guix-commits, 2022/04/24
- 161/232: gnu: python-pynndescent: Update to 0.5.6., guix-commits, 2022/04/24
- 168/232: gnu: python-jupyter-kernel-mgmt: Update to 0.5.1 and disable tests.,
guix-commits <=
- 174/232: gnu: conan: Update to 1.47.0 and relax PyYAML requirement., guix-commits, 2022/04/24
- 179/232: gnu: python-kombu: Update to 5.2.4., guix-commits, 2022/04/24
- 182/232: gnu: python-bitstruct: Update to 8.14.0., guix-commits, 2022/04/24
- 187/232: gnu: Add python-pyyaml-env-tag., guix-commits, 2022/04/24
- 197/232: gnu: Remove python-orator due to being broken and unmaintained., guix-commits, 2022/04/24
- 200/232: gnu: seed: Use webkitgtk-with-libsoup2., guix-commits, 2022/04/24
- 199/232: gnu: weasyprint: Update to 54.3., guix-commits, 2022/04/24
- 203/232: gnu: setzer: Add python-wrapper to fix build., guix-commits, 2022/04/24
- 209/232: gnu: python-flask-login: Update to 0.6.0., guix-commits, 2022/04/24
- 210/232: snippets: Add a 'remove' snippet., guix-commits, 2022/04/24