diff options
| author | Sören Tempel <soeren+git@soeren-tempel.net> | 2026-01-16 20:40:20 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-02-06 20:49:02 +0100 |
| commit | 1beeb4db9baa3db999367d69a198bb4ab30853ab (patch) | |
| tree | 77b99425549d175be426a25be568f29d905460f0 | |
| parent | 4632d0fa3a51ba71661317d1ca142dbee4284a27 (diff) | |
gnu: Add python-latex2pydata.
* gnu/packages/python-xyz.scm (python-latex2pydata): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
| -rw-r--r-- | gnu/packages/python-xyz.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b5b06a3bbd9..22bd99debe0 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -26773,6 +26773,26 @@ and SML. @code{more-itertools} includes additional building blocks for working with iterables.") (license license:expat))) +(define-public python-latex2pydata + (package + (name "python-latex2pydata") + (version "0.5.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "latex2pydata" version)) + (sha256 + (base32 "12a2ayhgp5plxkdikhy3myin14ydkj0msgb5j82dfvis7h4d5jmw")))) + (build-system pyproject-build-system) + (native-inputs (list python-setuptools python-wheel python-pytest)) + (home-page "https://github.com/gpoore/latex2pydata") + (synopsis "Load data from LaTeX in Python literal format") + (description + "This package is designed to load data in Python literal format that was +saved to file by the @code{latex2pydata} LaTeX package. This allows data to be +passed from LaTeX to Python.") + (license license:bsd-3))) + (define-public python-latexcodec (package (name "python-latexcodec") |
