mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-16 20:10:39 +02:00
gnu: Add python-jupyter-client-bootstrap.
* gnu/packages/python-xyz.scm (python-jupyter-client-bootstrap): New variable.
This commit is contained in:
parent
7f06ab7fc0
commit
a0e98da14f
1 changed files with 14 additions and 0 deletions
|
@ -7469,6 +7469,20 @@ for working with kernels, and the @code{jupyter kernelspec} entrypoint for
|
||||||
installing @code{kernelspec}s for use with Jupyter frontends.")
|
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 python2-jupyter-client
|
(define-public python2-jupyter-client
|
||||||
(package-with-python2 python-jupyter-client))
|
(package-with-python2 python-jupyter-client))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue