guix_mirror_bot pushed a commit to branch astro-update
in repository guix.
commit 1f12547b1f09d1f1ef158f62bf9702f759271a93
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jan 14 13:36:56 2026 +0000
gnu: Add python-pyread-eagle.
* gnu/packages/python-xyz.scm (python-pyread-eagle): New variable.
Change-Id: I770e2c544c2061cb4fdc9511756d66e938e4d8b6
---
gnu/packages/python-xyz.scm | 31 ++++++++++++++++++++++++++++++-
1 file changed, 30 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f334faf314..8000f64f55 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -95,7 +95,7 @@
;;; Copyright © 2020, 2021, 2024, 2025 Zheng Junjie <[email protected]>
;;; Copyright © 2020 EuAndreh <[email protected]>
;;; Copyright © 2021, 2022 Morgan Smith <[email protected]>
-;;; Copyright © 2021-2025 Sharlatan Hellseher <[email protected]>
+;;; Copyright © 2021-2026 Sharlatan Hellseher <[email protected]>
;;; Copyright © 2021 Ellis Kenyő <[email protected]>
;;; Copyright © 2021 LibreMiami <[email protected]>
;;; Copyright © 2021 Mathieu Othacehe <[email protected]>
@@ -2138,6 +2138,35 @@ signal dispatching mechanism. It's a fork of
http://pydispatcher.sourceforge.net/ with PyPy support.")
(license license:bsd-3)))
+(define-public python-pyread-eagle
+ (package
+ (name "python-pyread-eagle")
+ (version "1.0.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/kyleaoman/pyread_eagle")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0x8j5wkp46hbfccm88c7dmf8ak488llv1748i2g94npic2rx8yd4"))))
+ (build-system pyproject-build-system)
+ (arguments
+ ;; TODO: Tests need additional test data, see tests/test_regions.py.
+ (list #:tests? #f))
+ (native-inputs
+ (list python-setuptools))
+ (propagated-inputs
+ (list python-h5py
+ python-numpy))
+ (home-page "https://github.com/kyleaoman/pyread_eagle")
+ (synopsis "Read routines for Eagle HDF5 snapshots for Python")
+ (description
+ "This package provides a pure-python port of
+@url{https://github.com/jchelly/read_eagle, J. Helly's read_eagle}.")
+ (license license:gpl3)))
+
(define-public python-pyte
(package
(name "python-pyte")