guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 67f1c738b53c859167c8042f3953849cad011afc
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Dec 14 22:36:01 2025 +0000
gnu: Add python-lofar-parameterset.
* gnu/packages/astronomy.scm (python-lofar-parameterset): New variable.
Change-Id: I37c14d916f99a6dc3063e0ad2b9ab15e3759a283
---
gnu/packages/astronomy.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 23cd58a033..1fc2790085 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -6219,6 +6219,29 @@ It is a spiritual successor to @code{ParmDBplot} for
quickly reviewing gain
solutions generated by NDPPP.")
(license license:gpl3)))
+(define-public python-lofar-parameterset
+ (package
+ (name "python-lofar-parameterset")
+ (version "1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "lofar_parameterset" version))
+ (sha256
+ (base32 "059k9kvv0rfg1npc75mrr8qa3k8x7h0572jvfzbm5w66qx5jy0nh"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pytest
+ python-setuptools
+ python-setuptools-scm))
+ (home-page "https://git.astron.nl/lofar2.0/lofar_pyparameterset")
+ (synopsis "Minimal Python implementation of the LOFAR ParameterSet")
+ (description
+ "This package contains a pure-python drop-in replacement for the Python
+wrapper around the original LOFAR ParameterSet that is written in C++. It
+supports only the basic features of the original.")
+ (license license:gpl3+)))
+
(define-public python-losoto
(package
(name "python-losoto")