diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-11 12:02:59 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-26 16:15:33 +0100 |
commit | a0453d5ac19e5a327e6fb419b59585cae67abade (patch) | |
tree | 2785cefaf8c91e3ea5009f8661a9f78ce0563e56 | |
parent | 85a36c4e03c80f4c4b161483afd74c0e4c2de4e3 (diff) |
gnu: Add python-baseband.
* gnu/packages/astronomy.scm (python-baseband): New variable.
Change-Id: I1296fbbfec71e922b30ccd8d4125eb04fd72ceba
-rw-r--r-- | gnu/packages/astronomy.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 553da5ee21..ab8e558ec2 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -2428,6 +2428,36 @@ celestial-to-terrestrial coordinate transformations.") (delete python-matplotlib python-scipy))))) +(define-public python-baseband + (package + (name "python-baseband") + (version "4.3.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "baseband" version)) + (sha256 + (base32 "1yzgzdf8ri4blcpmnz5f3dv6in076vgbhbcqp37kjidlp4f4w05r")))) + (build-system pyproject-build-system) + (arguments + (list + ;; FIXME: Tests are broken during collection phase, see + ;; <https://github.com/mhvk/baseband/issues/539>. + #:tests? #f)) + (native-inputs + (list python-setuptools + python-setuptools-scm + python-wheel)) + (propagated-inputs + (list python-astropy)) + (home-page "https://github.com/mhvk/baseband") + (synopsis "Radio baseband I/O") + (description + "Baseband is a package for reading and writing @acronym{VLBI, +Very-long-baseline interferometry} and other radio baseband files, with the +aim of simplifying and streamlining data conversion and standardization.") + (license license:gpl3+))) + (define-public python-bayesicfitting (package (name "python-bayesicfitting") |