guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 1beeb4db9baa3db999367d69a198bb4ab30853ab
Author: Sören Tempel <[email protected]>
AuthorDate: Fri Jan 16 20:40:20 2026 +0100

    gnu: Add python-latex2pydata.
    
    * gnu/packages/python-xyz.scm (python-latex2pydata): New variable.
    
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 gnu/packages/python-xyz.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b5b06a3bbd..22bd99debe 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")

Reply via email to