mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: python-jupyter-client: Update to 6.1.12.
* gnu/packages/python-xyz.scm (python-jupyter-client): Update to 6.1.12. [propagated-inputs]: Add python-dateutil and python-tornado-6. [native-inputs]: Add python-pytest.
This commit is contained in:
parent
2a12cbaaab
commit
b1415bf089
1 changed files with 9 additions and 6 deletions
|
@ -7235,21 +7235,20 @@ (define-public python2-jupyter-core
|
||||||
(define-public python-jupyter-client
|
(define-public python-jupyter-client
|
||||||
(package
|
(package
|
||||||
(name "python-jupyter-client")
|
(name "python-jupyter-client")
|
||||||
(version "5.2.4")
|
(version "6.1.12")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "jupyter_client" version))
|
(uri (pypi-uri "jupyter_client" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0l9mh7ccrpl3lppym3dnky8n1nk7xarzzdcxf4q2s7aw203cpydm"))))
|
"10p7fcgvv9hvz9zical9wk68ks5ssak2ykbzx65wm1k1hk8a3g64"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
;; Tests fail because of missing native python kernel which I assume is
|
;; Tests fail because of missing native python kernel which I assume is
|
||||||
;; provided by the ipython package, which we cannot use because it would
|
;; provided by the ipython package, which we cannot use because it would
|
||||||
;; cause a dependency cycle.
|
;; cause a dependency cycle.
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f
|
`(#:tests? #f
|
||||||
|
|
||||||
#:phases (modify-phases %standard-phases
|
#:phases (modify-phases %standard-phases
|
||||||
(add-after 'unpack 'set-tool-file-names
|
(add-after 'unpack 'set-tool-file-names
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
@ -7261,9 +7260,13 @@ (define-public python-jupyter-client
|
||||||
(inputs
|
(inputs
|
||||||
`(("iproute" ,iproute)))
|
`(("iproute" ,iproute)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-pyzmq" ,python-pyzmq)
|
`(("python-dateutil" ,python-dateutil)
|
||||||
("python-traitlets" ,python-traitlets)
|
("python-jupyter-core" ,python-jupyter-core)
|
||||||
("python-jupyter-core" ,python-jupyter-core)))
|
("python-pyzmq" ,python-pyzmq)
|
||||||
|
("python-tornado" ,python-tornado-6)
|
||||||
|
("python-traitlets" ,python-traitlets)))
|
||||||
|
(native-inputs
|
||||||
|
`(("python-pytest" ,python-pytest)))
|
||||||
(home-page "https://jupyter.org/")
|
(home-page "https://jupyter.org/")
|
||||||
(synopsis "Jupyter protocol implementation and client libraries")
|
(synopsis "Jupyter protocol implementation and client libraries")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue