diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-11-04 07:43:44 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-11-04 07:43:44 +0100 |
commit | 72e886328c14c832b2ed71c400069b63852ee18d (patch) | |
tree | 92b4f32df417af5cbb9433386d996ec7d17522e9 /gnu/packages/jupyter.scm | |
parent | 1c41971e721dde203580ec17899beae546f1133a (diff) | |
parent | f54f36b363a86bb033275e3a0594974d3d91bd53 (diff) |
Merge branch 'master' into gnome-team
Change-Id: I88d3789460d1a89917451d80405d89a2824006ac
Diffstat (limited to 'gnu/packages/jupyter.scm')
-rw-r--r-- | gnu/packages/jupyter.scm | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm index 9337197cb2..87854afd72 100644 --- a/gnu/packages/jupyter.scm +++ b/gnu/packages/jupyter.scm @@ -410,6 +410,54 @@ endpoints—to Jupyter web applications.") are interactive HTML widgets for Jupyter notebooks and the IPython kernel.") (license license:bsd-3))) +(define-public python-jupyterlite-core + (package + (name "python-jupyterlite-core") + (version "0.1.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "jupyterlite_core" version)) + (sha256 + (base32 "18ysrqlsh7a31sknfnng419r7wpx9nfj59lxxd6zl1kcj6wazh34")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-doit python-importlib-metadata + python-jupyter-core)) + (native-inputs (list python-ansi2html + python-hatchling + python-pytest-console-scripts + python-pytest-cov + python-pytest-xdist + python-tornado-6)) + (home-page "https://github.com/jupyterlite/jupyterlite") + (synopsis "Core functionality for building JupyterLite websites") + (description "The jupyterlite-core package provides the core functionality +for building JupyterLite websites, the jupyter-lite CLI, and extension points +for authoring custom addons.") + (license license:bsd-3))) + +(define-public python-jupyterlite-sphinx + (package + (name "python-jupyterlite-sphinx") + (version "0.9.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "jupyterlite_sphinx" version)) + (sha256 + (base32 "05h7zrvsx0xzxlddsqfz1fxdgld66yhn6nxfp4jz20wbx6csrr4v")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #false)) ;there are none + (propagated-inputs (list python-docutils python-jupyter-server + python-jupyterlab-server python-jupyterlite-core + python-sphinx)) + (native-inputs (list python-hatchling)) + (home-page "https://github.com/jupyterlite/jupyterlite") + (synopsis "Sphinx extension for deploying JupyterLite") + (description "This package provides a Sphinx extension for deploying +@code{JupyterLite}.") + (license license:bsd-3))) + (define-public python-jupyter-server-mathjax (package (name "python-jupyter-server-mathjax") |