mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05: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 @@ (define-public python-jupyter-client
|
|||
installing @code{kernelspec}s for use with Jupyter frontends.")
|
||||
(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
|
||||
(package-with-python2 python-jupyter-client))
|
||||
|
||||
|
|
Loading…
Reference in a new issue