gnu: python-ipyparallel: Update to 8.2.1.
* gnu/packages/python-xyz.scm (python-ipyparallel-bootstrap): Update to 8.2.1. [propagated-inputs]: Add python-entrypoints, python-psutil and python-tqdm. Update python-tornado to version 6. (python-ipyparallel)[phases]{check}: Override phase. [native-inputs]: Remove python-mock and python-nose. Add python-pytest-asyncio and python-pytest-tornado.
This commit is contained in:
parent
8194b36ddf
commit
0f446f1bc4
1 changed files with 16 additions and 8 deletions
|
@ -8787,14 +8787,14 @@ away.")
|
||||||
(hidden-package
|
(hidden-package
|
||||||
(package
|
(package
|
||||||
(name "python-ipyparallel-bootstrap")
|
(name "python-ipyparallel-bootstrap")
|
||||||
(version "6.2.4")
|
(version "8.2.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "ipyparallel" version))
|
(uri (pypi-uri "ipyparallel" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0rf0dbpxf5z82bw8lsjj45r3wdd4wc74anz4wiiaf2rbjqlb1ivn"))))
|
"0wiwfd7870zbmczzn96jqxxjf2zcbcaxnsl1ddn8hspwa8y4frzj"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
@ -8806,12 +8806,14 @@ away.")
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-dateutil
|
(list python-dateutil
|
||||||
python-decorator
|
python-decorator
|
||||||
;; python-ipykernel is omitted here to avoid a cycle.
|
python-entrypoints
|
||||||
python-ipython
|
python-ipython
|
||||||
python-ipython-genutils
|
;; python-ipykernel is omitted here to break a cycle.
|
||||||
python-jupyter-client-bootstrap
|
python-jupyter-client-bootstrap
|
||||||
|
python-psutil
|
||||||
python-pyzmq
|
python-pyzmq
|
||||||
python-tornado
|
python-tornado-6
|
||||||
|
python-tqdm
|
||||||
python-traitlets))
|
python-traitlets))
|
||||||
(home-page "https://ipython.org/")
|
(home-page "https://ipython.org/")
|
||||||
(synopsis "Interactive Parallel Computing with IPython")
|
(synopsis "Interactive Parallel Computing with IPython")
|
||||||
|
@ -8830,13 +8832,19 @@ CLI scripts:
|
||||||
(package
|
(package
|
||||||
(inherit python-ipyparallel-bootstrap)
|
(inherit python-ipyparallel-bootstrap)
|
||||||
(name "python-ipyparallel")
|
(name "python-ipyparallel")
|
||||||
(arguments (list #:tests? #t))
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda _
|
||||||
|
(invoke "pytest" "-vv"))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-ipython
|
(list python-ipython
|
||||||
python-mock
|
|
||||||
python-nose
|
|
||||||
python-pytest
|
python-pytest
|
||||||
|
python-pytest-asyncio
|
||||||
python-pytest-cov
|
python-pytest-cov
|
||||||
|
python-pytest-tornado
|
||||||
python-testpath))
|
python-testpath))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(modify-inputs (package-propagated-inputs python-ipyparallel-bootstrap)
|
(modify-inputs (package-propagated-inputs python-ipyparallel-bootstrap)
|
||||||
|
|
Reference in a new issue