mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-15 19:40:46 +02:00
gnu: Add python-ipykernel-bootstrap.
* gnu/packages/python-xyz.scm (python-ipykernel-bootstrap): New variable.
This commit is contained in:
parent
a0e98da14f
commit
f371e53aaa
1 changed files with 13 additions and 0 deletions
|
@ -7529,6 +7529,19 @@ installing @code{kernelspec}s for use with Jupyter frontends.")
|
||||||
"This package provides the IPython kernel for Jupyter.")
|
"This package provides the IPython kernel for Jupyter.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
;; Bootstrap variant of ipykernel, which uses the bootstrap jupyter-client to
|
||||||
|
;; break the cycle between ipykernel and jupyter-client.
|
||||||
|
(define-public python-ipykernel-bootstrap
|
||||||
|
(let ((parent python-ipykernel))
|
||||||
|
(hidden-package
|
||||||
|
(package
|
||||||
|
(inherit parent)
|
||||||
|
(name "python-ipykernel-bootstrap")
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-jupyter-client" ,python-jupyter-client-bootstrap)
|
||||||
|
,@(fold alist-delete (package-propagated-inputs parent)
|
||||||
|
'("python-jupyter-client"))))))))
|
||||||
|
|
||||||
(define-public python-pari-jupyter
|
(define-public python-pari-jupyter
|
||||||
(package
|
(package
|
||||||
(name "python-pari-jupyter")
|
(name "python-pari-jupyter")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue