diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-05-09 14:44:48 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-05-09 14:44:48 +0200 |
commit | da3be3ff4f6d8b643ed9bdf6834df366b1bcea44 (patch) | |
tree | 913ff6010447b6a31dfbe4be6eccc06b11fd83cf /gnu/packages/jupyter.scm | |
parent | f5fe0082abe4547f3fb9f29d8351473cfb3a387b (diff) | |
parent | 4980630d1e3e6f9a6dc05438c7593a727207d9a0 (diff) |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/jupyter.scm')
-rw-r--r-- | gnu/packages/jupyter.scm | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm index dd5d2a5a55..bea53ba912 100644 --- a/gnu/packages/jupyter.scm +++ b/gnu/packages/jupyter.scm @@ -37,6 +37,7 @@ #:use-module (gnu packages python-build) #:use-module (gnu packages python-check) #:use-module (gnu packages python-crypto) + #:use-module (gnu packages python-science) #:use-module (gnu packages python-xyz) #:use-module (gnu packages python-web) #:use-module (gnu packages rdf) @@ -517,6 +518,66 @@ sending queries to an SPARQL endpoint and fetching & presenting the results in a notebook.") (license license:bsd-3))) +(define-public python-ipympl + (package + (name "python-ipympl") + (version "0.9.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "ipympl" version)) + (sha256 + (base32 "11rppjdqzgs4pfiq8gww5xkpbk21fp86vvv839v56b9rqq06j2b4")))) + (build-system python-build-system) + (propagated-inputs + (list python-ipython + python-ipython-genutils + python-ipywidgets + python-matplotlib + python-numpy + python-pillow + python-traitlets)) + (native-inputs + (list python-jupyter-packaging)) + (home-page "https://matplotlib.org/ipympl/") + (synopsis "Matplotlib Jupyter Extension") + (description "Leveraging the Jupyter interactive widgets framework, ipympl +enables the interactive features of matplotlib in the Jupyter notebook and in +JupyterLab.") + (license license:bsd-3))) + +(define-public python-ipydatawidgets + (package + (name "python-ipydatawidgets") + (version "4.2.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "ipydatawidgets" version)) + (sha256 + (base32 "1g65nzlsb1cipmvh9v27b22kkmzwvg8zbf32hmg1c25mb65vbr6h")))) + (build-system python-build-system) + (arguments + '(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "pytest" "-v"))))))) + (propagated-inputs + (list python-ipywidgets python-numpy python-six python-traittypes)) + (native-inputs + (list python-jupyter-packaging + python-nbval + python-pytest + python-pytest-cov)) + (home-page "https://github.com/vidartf/ipydatawidgets") + (synopsis "Widgets to help facilitate reuse of large datasets across widgets") + (description + "This package provides a set of widgets to help facilitate reuse of large +datasets across widgets.") + (license license:bsd-3))) + (define-public python-voila (package (name "python-voila") |