guix_mirror_bot pushed a commit to branch astro-updates in repository guix.
commit 84960e1400a690587e0093a57643ff4885e6957e Author: Sharlatan Hellseher <[email protected]> AuthorDate: Thu Oct 16 16:06:37 2025 +0100 gnu: Add python-eventio-1. * gnu/packages/astronomy.scm (python-eventio-1): New variable. Change-Id: I55a95fe3881ff76d5343298fdf5a9024c83aef39 --- gnu/packages/astronomy.scm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index df03563b8f..aee7b45f95 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -4338,6 +4338,22 @@ tools for astronomers.") "Python read-only implementation of the @code{EventIO} file format.") (license license:expat))) +;; 2.0.0 introduced breaching changes in API. +(define-public python-eventio-1 + (package + (inherit python-eventio) + (name "python-eventio") + (version "1.16.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cta-observatory/pyeventio") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jg2zgs0z5jfkdkbgxiiclxkyxrz4zhb57x1ji0c5pd2vsrn4g92")))))) + (define-public python-extinction (package (name "python-extinction")
