all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Sharlatan Hellseher <sharlatanus@gmail.com>
To: 63806@debbugs.gnu.org
Cc: Sharlatan Hellseher <sharlatanus@gmail.com>,
	Eric Bavier <bavier@posteo.net>
Subject: [bug#63806] [PATCH 11/18] gnu: Add python-crds.
Date: Tue, 30 May 2023 20:58:41 +0100	[thread overview]
Message-ID: <007ca2d2ee402c7f02da5bc590b717ada1b39bd2.1685475211.git.sharlatanus@gmail.com> (raw)
In-Reply-To: <cover.1685475210.git.sharlatanus@gmail.com>

* gnu/packages/astronomy.scm (python-crds): New variable.
---
 gnu/packages/astronomy.scm | 52 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 5b673350ba..d5fb41f7c4 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -1425,6 +1425,58 @@ (define-public python-cdflib
 @end itemize")
     (license license:expat)))
 
+(define-public python-crds
+  (package
+    (name "python-crds")
+    (version "11.17.0")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "crds" version))
+              (sha256
+               (base32
+                "0sdz1k4hrgrc2jwihp9ns7lx23kcz7f90c222q7aaqf9g3vvpqlr"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list
+      ;; XXX: Tests require Internet access to https://hst-crds.stsci.edu and
+      ;; additional test data. See:
+      ;; https://github.com/spacetelescope/crds/blob/master/setup_test_cache
+      #:tests? #f))
+    (propagated-inputs (list python-asdf
+                             python-astropy
+                             python-boto3
+                             python-filelock
+                             python-lxml
+                             python-numpy
+                             python-parsley
+                             python-pysynphot
+                             python-roman-datamodels
+                             python-stsynphot
+                             python-requests))
+    (native-inputs (list python-flake8
+                         python-ipython
+                         python-lockfile
+                         python-mock
+                         python-nose
+                         python-pylint
+                         python-pytest
+                         python-semantic-version
+                         python-setuptools-scm))
+    (home-page "https://hst-crds.stsci.edu")
+    (synopsis "Calibration Reference Data System for HST and JWST")
+    (description
+     "CRDS is a package used for working with astronomical reference files for
+the HST and JWST telescopes.  CRDS is useful for performing various operations on
+reference files or reference file assignment rules.  CRDS is used to assign,
+check, and compare reference files and rules, and also to predict those datasets
+which should potentially be reprocessed due to changes in reference files or
+assignment rules.  CRDS has versioned rules which define the assignment of
+references for each type and instrument configuration.  CRDS has web sites
+corresponding to each project (http://hst-crds.stsci.edu or
+https://jwst-crds.stsci.edu/) which record information about reference files and
+provide related services.")
+    (license license:bsd-3)))
+
 (define-public python-czml3
   (package
     (name "python-czml3")
-- 
2.40.1





  parent reply	other threads:[~2023-05-30 20:01 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-30 19:39 [bug#63806] [PATCH 00/18]: gnu: Add JWST (James Webb Space Telescope) Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 01/18] gnu: Add python-pysynshot Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 02/18] gnu: Add python-rad Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 03/18] gnu: Add python-roman-datamodels Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 04/18] gnu: Add python-stsci-image Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 05/18] gnu: Add python-stsci-imagestats Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 06/18] gnu: Add python-stsci-stimage Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 07/18] gnu: Add python-tweakwcs Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 08/18] gnu: Add python-synphot Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 09/18] gnu: Add python-stsynphot Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 10/18] gnu: Add python-parsley Sharlatan Hellseher
2023-05-30 19:58 ` Sharlatan Hellseher [this message]
2023-05-30 19:58 ` [bug#63806] [PATCH 12/18] gnu: Add python-stdatamodels Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 13/18] gnu: Add python-stpipe Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 14/18] gnu: Add python-bayesicfitting Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 15/18] gnu: Add python-wiimatch Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 16/18] gnu: Add python-drizzle Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 17/18] gnu: Add python-stcal Sharlatan Hellseher
2023-05-30 19:58 ` [bug#63806] [PATCH 18/18] gnu: Add python-jwst Sharlatan Hellseher
2023-06-09  8:33 ` [bug#63806] Sharlatan Hellseher
2023-06-14 11:59 ` bug#63806: [PATCH 00/18]: gnu: Add JWST (James Webb Space Telescope) Efraim Flashner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=007ca2d2ee402c7f02da5bc590b717ada1b39bd2.1685475211.git.sharlatanus@gmail.com \
    --to=sharlatanus@gmail.com \
    --cc=63806@debbugs.gnu.org \
    --cc=bavier@posteo.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.