guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 4088fc3e28f033c3098741f2ddd7e0d68dcecd84
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Aug 11 19:24:47 2026 +0100

    gnu: Add python-tables-io.
    
    * gnu/packages/astronomy.scm (python-tables-io): New variable.
    
    Relates-to: guix/guix!10702
---
 gnu/packages/astronomy.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 4c8c5a0dc4..ea8ef937a1 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -12547,6 +12547,44 @@ PYSYNPHOT, utilizing Astropy and covering the 
non-instrument specific portions
 of the old packages.")
     (license license:bsd-3)))
 
+(define-public python-tables-io
+  (package
+    (name "python-tables-io")
+    (version "1.1.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/LSSTDESC/tables_io";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0yi20hjxmh1vgi8l74pinqvw9fmn2qz6sfkf0khrg3sillwbpa9q"))))
+    (build-system pyproject-build-system)
+    (native-inputs
+     (list python-mpi4py
+           python-pytest
+           python-setuptools
+           python-setuptools-scm))
+    (propagated-inputs
+     (list python-click
+           python-deprecated
+           python-h5py
+           python-numpy
+           python-pandas
+           python-tables
+           ;; [optional]
+           python-astropy
+           python-pyarrow))
+    (home-page "https://github.com/LSSTDESC/tables_io";)
+    (synopsis "Input/output and conversion functions for tabular data")
+    (description
+     "@code{tables_io} provides an interface for a variety of non-ASCII file
+formats that are commonly used within the @url{https://lsstdesc.org/, LSST
+DESC collaboration}.  It allows users to read in data from multiple types of
+files through one convenient interface.")
+    (license license:expat)))
+
 (define-public python-tweakwcs
   (package
     (name "python-tweakwcs")

Reply via email to