diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-14 21:31:09 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-28 22:44:04 +0000 |
commit | 4fd8bd03eabe198b94f9b33dc115c77b17ed5081 (patch) | |
tree | a8215b977d242e946618863e949f486399c22142 /gnu | |
parent | a244d5b93160ac5759283a8c8919623ec7171ec4 (diff) |
gnu: Add python-lofar-h5plot.
* gnu/packages/astronomy.scm (python-lofar-h5plot): New variable.
Change-Id: I4d780726b242cf4055fb82ef26ad97abf3419ce9
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/astronomy.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index ae1030b922..ce8a1291c4 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -3051,6 +3051,37 @@ semi-analytic models, to cosmological hydrodynamic simulations, and even observationally-derived galaxy merger catalogs.") (license license:expat))) +(define-public python-lofar-h5plot + (package + (name "python-lofar-h5plot") + (version "2.9.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "lofar_h5plot" version)) + (sha256 + (base32 "0gxri18iqsw1l5zxn40475zj34h5nn1bscfrhkc739vpqjmj60hz")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ; no tests provided + (native-inputs + (list python-cython-3 + python-setuptools + python-wheel)) + (propagated-inputs + (list python-losoto + python-matplotlib + python-numpy + python-pyqt + python-pyqt5-sip)) + (home-page "https://github.com/tikk3r/lofar-h5plot") + (synopsis "GUI for plotting H5Parms produced during LOFAR calibration") + (description + "H5plot is a small GUI to view the solutions in an H5parm interactively. +It is a spiritual successor to @code{ParmDBplot} for quickly reviewing gain +solutions generated by NDPPP.") + (license license:gpl3))) + (define-public python-losoto (package (name "python-losoto") |