1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 11:30:44 +02:00

gnu: Add python-ipykernel-bootstrap.

* gnu/packages/python-xyz.scm (python-ipykernel-bootstrap): New
variable.
This commit is contained in:
Lars-Dominik Braun 2021-04-20 09:50:12 +02:00
parent a0e98da14f
commit f371e53aaa
No known key found for this signature in database
GPG key ID: F663943E08D8092A

View file

@ -7529,6 +7529,19 @@ installing @code{kernelspec}s for use with Jupyter frontends.")
"This package provides the IPython kernel for Jupyter.")
(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
(package
(name "python-pari-jupyter")