gnu: Add python-ipyparallel-bootstrap.
* gnu/packages/python-xyz.scm (python-ipyparallel): Morph into... (python-ipyparallel-bootstrap): ... this, moving native inputs to a new definition of... (python-ipyparallel): ... this.
This commit is contained in:
parent
59e51d8f1c
commit
d5ee3dcf9e
1 changed files with 58 additions and 39 deletions
|
@ -8782,47 +8782,41 @@ away.")
|
||||||
(define-public python2-ipython-genutils
|
(define-public python2-ipython-genutils
|
||||||
(package-with-python2 python-ipython-genutils))
|
(package-with-python2 python-ipython-genutils))
|
||||||
|
|
||||||
(define-public python-ipyparallel
|
;;; Variant used to break a cycle with python-ipykernel.
|
||||||
(package
|
(define-public python-ipyparallel-bootstrap
|
||||||
(name "python-ipyparallel")
|
(hidden-package
|
||||||
(version "6.2.4")
|
(package
|
||||||
(source
|
(name "python-ipyparallel-bootstrap")
|
||||||
|
(version "6.2.4")
|
||||||
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "ipyparallel" version))
|
(uri (pypi-uri "ipyparallel" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0rf0dbpxf5z82bw8lsjj45r3wdd4wc74anz4wiiaf2rbjqlb1ivn"))))
|
"0rf0dbpxf5z82bw8lsjj45r3wdd4wc74anz4wiiaf2rbjqlb1ivn"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; RuntimeError: IO Loop failed to start
|
(list
|
||||||
#:phases
|
#:tests? #f
|
||||||
(modify-phases %standard-phases
|
#:phases #~(modify-phases %standard-phases
|
||||||
(add-before 'check 'prepare-for-tests
|
;; The python-ipykernel is normally propagated but is
|
||||||
(lambda _
|
;; removed from this package to break the cycle.
|
||||||
(setenv "HOME" (getcwd))
|
(delete 'sanity-check))))
|
||||||
#t)))))
|
(propagated-inputs
|
||||||
(propagated-inputs
|
(list python-dateutil
|
||||||
(list python-dateutil
|
python-decorator
|
||||||
python-decorator
|
;; python-ipykernel is omitted here to avoid a cycle.
|
||||||
python-ipykernel
|
python-ipython
|
||||||
python-ipython
|
python-ipython-genutils
|
||||||
python-ipython-genutils
|
python-jupyter-client-bootstrap
|
||||||
python-jupyter-client
|
python-pyzmq
|
||||||
python-pyzmq
|
python-tornado
|
||||||
python-tornado
|
python-traitlets))
|
||||||
python-traitlets))
|
(home-page "https://ipython.org/")
|
||||||
(native-inputs
|
(synopsis "Interactive Parallel Computing with IPython")
|
||||||
(list python-ipython
|
(description
|
||||||
python-mock
|
"@code{ipyparallel} is a Python package and collection of CLI scripts for
|
||||||
python-nose
|
|
||||||
python-pytest
|
|
||||||
python-pytest-cov
|
|
||||||
python-testpath))
|
|
||||||
(home-page "https://ipython.org/")
|
|
||||||
(synopsis "Interactive Parallel Computing with IPython")
|
|
||||||
(description
|
|
||||||
"@code{ipyparallel} is a Python package and collection of CLI scripts for
|
|
||||||
controlling clusters for Jupyter. @code{ipyparallel} contains the following
|
controlling clusters for Jupyter. @code{ipyparallel} contains the following
|
||||||
CLI scripts:
|
CLI scripts:
|
||||||
@enumerate
|
@enumerate
|
||||||
|
@ -8830,7 +8824,26 @@ CLI scripts:
|
||||||
@item ipcontroller - start a scheduler
|
@item ipcontroller - start a scheduler
|
||||||
@item ipengine - start an engine
|
@item ipengine - start an engine
|
||||||
@end enumerate")
|
@end enumerate")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3))))
|
||||||
|
|
||||||
|
(define-public python-ipyparallel
|
||||||
|
(package
|
||||||
|
(inherit python-ipyparallel-bootstrap)
|
||||||
|
(name "python-ipyparallel")
|
||||||
|
(arguments (list #:tests? #t))
|
||||||
|
(native-inputs
|
||||||
|
(list python-ipython
|
||||||
|
python-mock
|
||||||
|
python-nose
|
||||||
|
python-pytest
|
||||||
|
python-pytest-cov
|
||||||
|
python-testpath))
|
||||||
|
(propagated-inputs
|
||||||
|
(modify-inputs (package-propagated-inputs python-ipyparallel-bootstrap)
|
||||||
|
(replace "python-jupyter-client-bootstrap" python-jupyter-client)
|
||||||
|
(append python-ipykernel)))
|
||||||
|
(properties (alist-delete 'hidden? (package-properties
|
||||||
|
python-ipyparallel-bootstrap)))))
|
||||||
|
|
||||||
(define-public python-ipython-cluster-helper
|
(define-public python-ipython-cluster-helper
|
||||||
(package
|
(package
|
||||||
|
@ -9119,10 +9132,16 @@ installing @code{kernelspec}s for use with Jupyter frontends.")
|
||||||
(package
|
(package
|
||||||
(inherit parent)
|
(inherit parent)
|
||||||
(name "python-ipykernel-bootstrap")
|
(name "python-ipykernel-bootstrap")
|
||||||
|
(arguments (list #:tests? #f
|
||||||
|
;; The package should normally propagate ipykernel,
|
||||||
|
;; left out here to break the cycle.
|
||||||
|
#:phases #~(modify-phases %standard-phases
|
||||||
|
(delete 'sanity-check))))
|
||||||
|
(native-inputs '())
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-jupyter-client" ,python-jupyter-client-bootstrap)
|
(modify-inputs (package-propagated-inputs parent)
|
||||||
,@(fold alist-delete (package-propagated-inputs parent)
|
(replace "python-jupyter-client" python-jupyter-client-bootstrap)
|
||||||
'("python-jupyter-client"))))))))
|
(append python-ipyparallel-bootstrap)))))))
|
||||||
|
|
||||||
(define-public python-pari-jupyter
|
(define-public python-pari-jupyter
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue