[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
114/232: gnu: Add python-jupyter-server-mathjax.
From: |
guix-commits |
Subject: |
114/232: gnu: Add python-jupyter-server-mathjax. |
Date: |
Sun, 24 Apr 2022 23:58:57 -0400 (EDT) |
apteryx pushed a commit to branch wip-ipython-polyglossia
in repository guix.
commit 981db25909c17895345edbdaea534390ba796706
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Wed Apr 13 16:23:39 2022 -0400
gnu: Add python-jupyter-server-mathjax.
* gnu/packages/jupyter.scm (python-jupyter-server-mathjax): New variable.
---
gnu/packages/jupyter.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm
index 3d2a8de617..88777bdf81 100644
--- a/gnu/packages/jupyter.scm
+++ b/gnu/packages/jupyter.scm
@@ -338,6 +338,39 @@ endpoints—to Jupyter web applications.")
are interactive HTML widgets for Jupyter notebooks and the IPython kernel.")
(license license:bsd-3)))
+(define-public python-jupyter-server-mathjax
+ (package
+ (name "python-jupyter-server-mathjax")
+ (version "0.2.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "jupyter_server_mathjax" version))
+ (sha256
+ (base32 "1cz7grhj9jih9mgw4xk7a4bqy1fwlb1jsawh6ykxnvpydn76rnb4"))))
+ (build-system python-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (with-directory-excursion "/tmp"
+ (invoke "pytest" "-vv"
+ "--pyargs" "jupyter_server_mathjax"))))))))
+ (propagated-inputs (list python-jupyter-server))
+ (native-inputs
+ (list python-jupyter-server
+ python-jupyter-packaging
+ python-pytest
+ python-pytest-tornasync))
+ (home-page "https://jupyter.org")
+ (synopsis "Jupyter Server extension for serving Mathjax")
+ (description "This package provides a Jupyter Server extension for serving
+Mathjax, the JavaScript display engine for mathematics.")
+ (license license:bsd-3)))
+
(define-public python-nbclient
(package
(name "python-nbclient")
- 89/232: gnu: Add font-gfs-ambrosia., (continued)
- 89/232: gnu: Add font-gfs-ambrosia., guix-commits, 2022/04/24
- 90/232: gnu: python-click: Update to 8.1.2 and honor TESTS?., guix-commits, 2022/04/24
- 95/232: gnu: python-trio: Update to 0.20.0., guix-commits, 2022/04/24
- 98/232: gnu: python-greenlet: Update to 1.1.2., guix-commits, 2022/04/24
- 99/232: gnu: Add python-pytest-forked-next., guix-commits, 2022/04/24
- 101/232: gnu: Add python-ipyparallel-bootstrap., guix-commits, 2022/04/24
- 102/232: gnu: python-nest-asyncio: Update to 1.5.5., guix-commits, 2022/04/24
- 103/232: gnu: python-jupyter-core: Update to 4.10.0., guix-commits, 2022/04/24
- 108/232: gnu: python-anyio: Update to 3.5.0., guix-commits, 2022/04/24
- 109/232: gnu: python-nbclient: Update to 0.6.0., guix-commits, 2022/04/24
- 114/232: gnu: Add python-jupyter-server-mathjax.,
guix-commits <=
- 115/232: gnu: python-nbval: Fix build., guix-commits, 2022/04/24
- 116/232: gnu: python-send2trash: Update to 1.8.0 and update home page., guix-commits, 2022/04/24
- 122/232: gnu: Add python-sphinx-theme-builder., guix-commits, 2022/04/24
- 123/232: gnu: Add python-sphinx-sitemap., guix-commits, 2022/04/24
- 125/232: gnu: texlive-polyglossia: Rename and fix package., guix-commits, 2022/04/24
- 124/232: gnu: texlive-fontspec: Add missing propagated inputs., guix-commits, 2022/04/24
- 127/232: gnu: Add texlive-cbfonts., guix-commits, 2022/04/24
- 129/232: gnu: texlive-latex-geometry: Propagate texlive-latex-graphics., guix-commits, 2022/04/24
- 132/232: gnu: python-ipython-documentation: Also build info and pdf targets., guix-commits, 2022/04/24
- 135/232: gnu: Add python-rfc3339-validator., guix-commits, 2022/04/24