diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-03 18:28:31 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-28 22:44:00 +0000 |
commit | bbde0b9d9fe9912fe911fa92f84b53e565021bd0 (patch) | |
tree | 244c30976d62c085b1f9d7316b16bfed24573da6 /gnu/packages/astronomy.scm | |
parent | 11284f55f6364a3272a35f18ab394932e220aa90 (diff) |
gnu: Add python-casacore.
* gnu/packages/astronomy.scm (python-casacore): New variable.
Change-Id: I25182daf664c00945f560cb5b7e66c796e165d3f
Diffstat (limited to 'gnu/packages/astronomy.scm')
-rw-r--r-- | gnu/packages/astronomy.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 1cd4d74359..54e974c5a6 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -2053,6 +2053,38 @@ Applications} formats (such as @file{.image} datasets). This implementation is independent of and does not use @code{casacore}.") (license license:lgpl2.0))) +(define-public python-casacore + (package + (name "python-casacore") + (version "3.6.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "python_casacore" version)) + (sha256 + (base32 "10dva4b3mz0n885d1n91dyzmwj1gwn6mcwd2qrm678kfdccarhfx")))) + (build-system pyproject-build-system) + (native-inputs + (list boost + cmake-minimal + python-pytest + python-scikit-build-core + python-setuptools-scm)) + (inputs + (list casacore + cfitsio + hdf5 + openblas + wcslib)) + (propagated-inputs + (list python-numpy)) + (home-page "https://casacore.github.io/python-casacore") + (synopsis "Python wrapper for Casacore") + (description + "This package provides a wrapper around @code{casacore}, the radio +astronomy library.") + (license license:gpl3+))) + (define-public python-ccdproc (package (name "python-ccdproc") |