From 0e1c6cecadf0d7a32281e51199a16dc2de793feb Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 14 Dec 2025 22:36:01 +0000 Subject: [PATCH] gnu: Add python-lofar-parameterset. * gnu/packages/astronomy.scm (python-lofar-parameterset): New variable. Change-Id: I37c14d916f99a6dc3063e0ad2b9ab15e3759a283 Signed-off-by: Rutherther --- gnu/packages/astronomy.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 23cd58a033fdcf36422e5d7330717518bfa995af..1fc2790085e4ea2d37456d3c777c6e3ac9d6d570 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")