mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add python-jupyterlab-widgets.
* gnu/packages/jupyter.scm (python-jupyterlab-widgets): New variable.
This commit is contained in:
parent
a26dd2e282
commit
4cb6120584
1 changed files with 21 additions and 0 deletions
|
@ -242,6 +242,27 @@ (define-public python-jupyter-packaging
|
||||||
JavaScript build steps.")
|
JavaScript build steps.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public python-jupyterlab-widgets
|
||||||
|
(package
|
||||||
|
(name "python-jupyterlab-widgets")
|
||||||
|
(version "1.0.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "jupyterlab_widgets" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0y7vhhas3qndiypcpcfnhrj9n92v2w4hdc86nn620s9h9nl2j6jw"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("python-jupyter-packaging" ,python-jupyter-packaging)
|
||||||
|
("python-setuptools" ,python-setuptools)))
|
||||||
|
(home-page "https://github.com/jupyter-widgets/ipywidgets")
|
||||||
|
(synopsis "Interactive widgets for Jupyter Notebooks")
|
||||||
|
(description "ipywidgets, also known as jupyter-widgets or simply widgets,
|
||||||
|
are interactive HTML widgets for Jupyter notebooks and the IPython kernel.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public python-nbclient
|
(define-public python-nbclient
|
||||||
(package
|
(package
|
||||||
(name "python-nbclient")
|
(name "python-nbclient")
|
||||||
|
|
Loading…
Reference in a new issue