diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-03-04 00:28:02 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-03-31 21:04:10 +0100 |
commit | 45d2185c84b0898a1bde797a4bfe906321111e18 (patch) | |
tree | 677d4d7d400e20087bf4cd3b7aa754ebe71fb490 | |
parent | 072498187bc3835d26aef407e8a9be7d00a83a02 (diff) |
gnu: Add python-stsci-skypac.
* gnu/packages/astronomy.scm (python-stsci-skypac): New variable.
Change-Id: Ia4a87dbc7a3d5323907a2dea98df696582965532
-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 3143867010..df3131646b 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -7026,6 +7026,36 @@ pipelines.") orbit around the Earth.") (license license:expat))) +(define-public python-stsci-skypac + (package + (name "python-stsci-skypac") + (version "1.0.10") + (source + (origin + (method url-fetch) + (uri (pypi-uri "stsci_skypac" version)) + (sha256 + (base32 "0amfknfxzrmia0d8x83i9h2v5760ynvfgfs0kzpb1ib0vyaci671")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ; no tests in PyPI or git + (native-inputs + (list python-setuptools + python-setuptools-scm-next + python-wheel)) + (propagated-inputs + (list python-astropy + python-numpy + python-spherical-geometry + python-stsci-imagestats + python-stsci-tools + python-stwcs)) + (home-page "https://stsci-skypac.readthedocs.io/en/latest") + (synopsis "Sky matching on image mosaic") + (description + "This package implements a functionality to match sky on image mosaic.") + (license license:bsd-3))) + (define-public python-stsci-tools (package (name "python-stsci-tools") |