[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#63806] [PATCH 18/18] gnu: Add python-jwst.
From: |
Sharlatan Hellseher |
Subject: |
[bug#63806] [PATCH 18/18] gnu: Add python-jwst. |
Date: |
Tue, 30 May 2023 20:58:48 +0100 |
* gnu/packages/astronomy.scm (python-jwst): New variable.
---
gnu/packages/astronomy.scm | 67 ++++++++++++++++++++++++++++++++++++++
1 file changed, 67 insertions(+)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 475362c8bb..2772e58141 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -2923,6 +2923,73 @@ (define-public python-jplephem
JPL ephemerides use to predict raw (x,y,z) planetary positions.")
(license license:expat)))
+(define-public python-jwst
+ (package
+ (name "python-jwst")
+ (version "1.10.2")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "jwst" version))
+ (sha256
+ (base32
+ "1lmfyw2y7c84rs9xqavah9aidj478ijiiijlz6fag11xqn1vs98y"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ ;; XXX: Tests require access to https://jwst-crds-pub.stsci.edu server
for
+ ;; getting data sets.
+ #:tests? #f
+ #:phases #~(modify-phases %standard-phases
+ ;; NOTE: (Sharlatan-20230529T113448+0100): opencv-python's
+ ;; version can't be detected, it could the way it's packed
in
+ ;; Guix. Review failing sanity check with more efforts,
+ ;; disable for now to make package buildable.
+ (delete 'sanity-check))))
+ ;; opencv provides OpenCV-Python which is Listed as install requirement.
+ (propagated-inputs (list opencv
+ python-asdf
+ python-asdf-astropy
+ python-astropy
+ python-bayesicfitting
+ python-crds
+ python-drizzle
+ python-gwcs
+ python-jsonschema
+ python-numpy
+ python-photutils
+ python-poppy
+ python-psutil
+ python-pyparsing
+ python-requests
+ python-scikit-image
+ python-scipy
+ python-spherical-geometry
+ python-stcal
+ python-stdatamodels
+ python-stpipe
+ python-stsci-image
+ python-stsci-imagestats
+ python-tweakwcs
+ python-wiimatch))
+ (native-inputs (list python-codecov
+ python-colorama
+ python-flake8
+ python-pytest
+ python-pytest-cov
+ python-pytest-doctestplus
+ python-pytest-openfiles
+ python-requests-mock
+ python-setuptools-scm))
+ (home-page "https://jwst-pipeline.readthedocs.io/en/latest/")
+ (synopsis
+ "Python library for science observations from the James Webb Space
Telescope")
+ (description
+ "This package provides an access to the JWST Science Calibration Pipeline
+processes data from all JWST instruments and observing modes by applying
various
+science corrections sequentially, producing both fully-calibrated individual
+exposures and high-level data products (mosaics, extracted spectra, etc.).")
+ (license license:bsd-3)))
+
(define-public python-pyerfa
(package
(name "python-pyerfa")
--
2.40.1
- [bug#63806] [PATCH 08/18] gnu: Add python-synphot., (continued)
- [bug#63806] [PATCH 08/18] gnu: Add python-synphot., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 05/18] gnu: Add python-stsci-imagestats., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 13/18] gnu: Add python-stpipe., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 11/18] gnu: Add python-crds., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 14/18] gnu: Add python-bayesicfitting., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 12/18] gnu: Add python-stdatamodels., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 10/18] gnu: Add python-parsley., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 15/18] gnu: Add python-wiimatch., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 16/18] gnu: Add python-drizzle., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 17/18] gnu: Add python-stcal., Sharlatan Hellseher, 2023/05/30
- [bug#63806] [PATCH 18/18] gnu: Add python-jwst.,
Sharlatan Hellseher <=