summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-04-25 08:02:14 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-05-10 19:23:53 +0100
commit55344d4edfec9ed72ba0adab41f767e4cb2ff097 (patch)
tree217c3633e11ec7e009ed91629e51c5c97acf0470
parentefbc986d803190917097f51a899e1f4f3785c28a (diff)
gnu: Remove python-jupyter-kernel-mgmt.
See <https://issues.guix.gnu.org/78055>. * gnu/packages/jupyter.scm (python-jupyter-kernel-mgmt): Delete variable. Change-Id: I26660a1e4f32f7e84e253493973bd1c558b98e10
-rw-r--r--gnu/packages/jupyter.scm45
1 files changed, 0 insertions, 45 deletions
diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm
index 6b57f2bff54..8d88ac877c6 100644
--- a/gnu/packages/jupyter.scm
+++ b/gnu/packages/jupyter.scm
@@ -417,51 +417,6 @@ protocol} to be used by both clients and kernels.")
(license license:bsd-3)
(properties '((upstream-name . "jupyter_protocol")))))
-(define-public python-jupyter-kernel-mgmt
- (package
- (name "python-jupyter-kernel-mgmt")
- (version "0.5.1")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "jupyter_kernel_mgmt" version))
- (sha256
- (base32
- "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-6
- python-traitlets))
- (native-inputs
- (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
- "This package is an experimental refactoring of the machinery for
-launching and using Jupyter kernels.")
- (license license:bsd-3)
- (properties '((upstream-name . "jupyter_kernel_mgmt")))))
-
(define-public python-jupyter-kernel-test
(package
(name "python-jupyter-kernel-test")