[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#51765] [PATCH 6/6] gnu: Add gwcs
From: |
Sharlatan Hellseher |
Subject: |
[bug#51765] [PATCH 6/6] gnu: Add gwcs |
Date: |
Fri, 14 Jan 2022 23:40:25 +0000 |
* gnu/packages/astronomy.scm: (python-gwcs): New variable.
---
gnu/packages/astronomy.scm | 46 ++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index b025b86736..60dd968838 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -1487,3 +1487,49 @@ (define-public python-skyfield
"Skyfield computes positions for the stars, planets, and satellites in
orbit around the Earth.")
(license license:expat)))
+
+(define-public python-gwcs
+ (package
+ (name "python-gwcs")
+ (version "0.18.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "gwcs" version))
+ (sha256
+ (base32 "194j49m8xjjzv9pp8cnj06igz8sdxb0nphyybcc7mhigw0f0kr30"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key inputs outputs tests? #:allow-other-keys)
+ (when tests?
+ (add-installed-pythonpath inputs outputs)
+ (invoke "python" "-m" "pytest")))))))
+ (native-inputs
+ (list python-jsonschema
+ python-jmespath
+ python-pytest
+ python-pytest-doctestplus
+ python-pyyaml
+ python-semantic-version
+ python-setuptools-scm))
+ (propagated-inputs
+ (list python-asdf
+ python-asdf-astropy
+ python-astropy
+ python-asdf-wcs-schemas
+ python-numpy
+ python-scipy))
+ (home-page "https://gwcs.readthedocs.io/en/latest/")
+ (synopsis "Generalized World Coordinate System")
+ (description
+ "Generalized World Coordinate System (GWCS) is an Astropy affiliated
package
+providing tools for managing the World Coordinate System of astronomical data.
+
+GWCS takes a general approach to the problem of expressing transformations
+between pixel and world coordinates. It supports a data model which includes
the
+entire transformation pipeline from input coordinates (detector by default) to
+world coordinates. It is tightly integrated with Astropy.")
+ (license license:bsd-3)))
--
2.34.0
- [bug#51765] [PATCH 1/6] gnu: python-asdf: Update to 2.8.3, Sharlatan Hellseher, 2022/01/14
- [bug#51765] [PATCH 4/6] gnu: Add asdf-astropy, Sharlatan Hellseher, 2022/01/14
- [bug#51765] [PATCH 2/6] gnu: Add asdf-transform-schemas, Sharlatan Hellseher, 2022/01/14
- [bug#51765] [PATCH 6/6] gnu: Add gwcs,
Sharlatan Hellseher <=
- [bug#51765] [PATCH 3/6] gnu: Add asdf-coordinates-schemas, Sharlatan Hellseher, 2022/01/14
- [bug#51765] [PATCH 5/6] gnu: Add asdf-wcs-schemas, Sharlatan Hellseher, 2022/01/14
- bug#51765: [PATCH 1/6] gnu: python-asdf: Update to 2.8.3, Vinicius Monego, 2022/01/30