diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-04 11:36:22 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 22:13:40 +0100 |
commit | 9c339d503ff68602609000e3b5560032089ab398 (patch) | |
tree | 82e58b3e2a38417b13037fd1b4dc364ac59c9dca | |
parent | 2e5d28bd3655e3bc944dfa5904890b688a711de1 (diff) |
gnu: Add python-linetools.
* gnu/packages/astronomy.scm (python-linetools): New variable.
Change-Id: Ie667aca685c5acca8c7ed8aa1312b192dd59683b
-rw-r--r-- | gnu/packages/astronomy.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 0efc401c29..2e9b51183c 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -4731,6 +4731,40 @@ quantification of galaxies, quasar-host galaxy decomposition and much more.") pulsar timing tool.") (license license:expat))) +(define-public python-linetools + (package + (name "python-linetools") + (version "0.3.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "linetools" version)) + (sha256 + (base32 "1nljcaz0r60wvsy5dwb040wll2dd764dvib5xzkpc59cbw5lz85h")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-pytest-astropy + python-pytest-cov + python-setuptools + python-setuptools-scm + python-wheel)) + (propagated-inputs + (list python-astropy + python-h5py + python-ipython + python-matplotlib + python-numpy + python-pyyaml + python-qtpy + python-scipy)) + (home-page "http://linetools.readthedocs.org/") + (synopsis "Quasar and galaxy spectra 1-D analysis tool") + (description + "This package implements a functionality for analysing absorption and +emission lines in 1-D spectra, especially galaxy and quasar spectra.") + (license license:bsd-3))) + (define-public python-lofar-h5plot (package (name "python-lofar-h5plot") |