gnu: python-nbclient: Update to 0.6.0.
* gnu/packages/jupyter.scm (python-nbclient): Update to 0.6.0. [tests?]: Update comment. [propagated-inputs]: Remove python-async-generator. [native-inputs]: Delete field. [description]: Fix spacing.master
parent
abb7617f20
commit
4bc0d5300b
|
@ -342,46 +342,27 @@ are interactive HTML widgets for Jupyter notebooks and the IPython kernel.")
|
||||||
(define-public python-nbclient
|
(define-public python-nbclient
|
||||||
(package
|
(package
|
||||||
(name "python-nbclient")
|
(name "python-nbclient")
|
||||||
(version "0.5.3")
|
(version "0.6.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "nbclient" version))
|
(uri (pypi-uri "nbclient" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"172q4r6mq0lg394di0pc6ipvniy14jg38wkdsj48r366609jf5yv"))))
|
"0cbhs8l8ma5nzm1i4484gsrb7189m1lmniashp929pxsqq1s929z"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
;; Tests require a kernel via python-ipykernel, and also tools from
|
;; Tests require tools from nbconvert, which would introduces a cycle.
|
||||||
;; nbconvert.
|
|
||||||
(arguments '(#:tests? #false))
|
(arguments '(#:tests? #false))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-async-generator python-jupyter-client python-nbformat
|
(list python-jupyter-client
|
||||||
python-nest-asyncio python-traitlets))
|
python-nbformat
|
||||||
(native-inputs
|
python-nest-asyncio
|
||||||
(list python-black
|
python-traitlets))
|
||||||
python-bumpversion
|
|
||||||
python-check-manifest
|
|
||||||
python-codecov
|
|
||||||
python-coverage
|
|
||||||
python-flake8
|
|
||||||
;; ("python-ipykernel" ,python-ipykernel)
|
|
||||||
;; ("python-ipython" ,python-ipython)
|
|
||||||
;; ("python-ipywidgets" ,python-ipywidgets)
|
|
||||||
python-mypy
|
|
||||||
python-pip
|
|
||||||
python-pytest
|
|
||||||
python-pytest-cov
|
|
||||||
python-setuptools
|
|
||||||
python-testpath
|
|
||||||
python-tox
|
|
||||||
python-twine
|
|
||||||
python-wheel
|
|
||||||
python-xmltodict))
|
|
||||||
(home-page "https://jupyter.org")
|
(home-page "https://jupyter.org")
|
||||||
(synopsis "Client library for executing notebooks")
|
(synopsis "Client library for executing notebooks")
|
||||||
(description
|
(description
|
||||||
"This package provides a client library for executing notebooks. Formerly
|
"This package provides a client library for executing notebooks.
|
||||||
nbconvert's @code{ExecutePreprocessor.}")
|
It was formerly known as nbconvert's @code{ExecutePreprocessor.}")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public repo2docker
|
(define-public repo2docker
|
||||||
|
|
Reference in New Issue