diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-01-16 12:24:21 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-01-30 09:10:13 +0000 |
| commit | c9f4997d7a6c7c6852a01f78a319c266bd9052d9 (patch) | |
| tree | 7d4e9849b9b8ba36f8d1186d0ad0cd89be89eb89 /gnu | |
| parent | fcf181df46cfe31c543bbe696f038a271c2f0750 (diff) | |
gnu: Add python-astlib.
* gnu/packages/astronomy.scm (python-astlib): New variable.
Change-Id: I63691c616210c03d59ae268980161b2807e13c76
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/astronomy.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 6037bd86f5..49ab6a2a43 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -2543,6 +2543,33 @@ format for chunked, compressed, N-dimensional arrays based on an open-source specification.") (license license:bsd-3))) +(define-public python-astlib + (package + (name "python-astlib") + (version "0.13.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "astlib" version)) + (sha256 + (base32 "0iffjk05gm0kdksjw4kx3g231rq0dmp1vgvidj42bznfjq1z3iag")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools)) + (propagated-inputs + (list python-astropy + python-matplotlib + python-numpy + python-scipy)) + (home-page "https://astlib.readthedocs.io") + (synopsis "Plots with World Coordinate System information") + (description + "This package provides a set of Python modules for producing simple plots, +statistics, common calculations, coordinate conversions, and manipulating FITS +images with World Coordinate System (WCS) information.") + (license license:lgpl2.1))) + (define-public python-astral (package (name "python-astral") |
