summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-17 16:09:48 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-30 18:34:50 +0000
commit9742e9eb64b4a1ea1bc95e11a5ba558e3b1cec22 (patch)
tree02edc6c50029c7bcdf338bae03404475e809ecb5
parent588614e8a87f494f96c8161097c44eaed90d2fc4 (diff)
gnu: Add python-crds-minimal.
* gnu/packages/astronomy.scm (python-crds-minimal): New variable. Change-Id: Idd79f9381af2871619cee7e0772a5f6b874dc994
-rw-r--r--gnu/packages/astronomy.scm18
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 1afc0fc307d..696eae4484f 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -3911,6 +3911,24 @@ has web sites corresponding to each project @url{http://hst-crds.stsci.edu} or
files and provide related services.")
(license license:bsd-3)))
+;; A bare minimal package, mainly to use in tests and reduce closure
+;; size. Tests are left out in the main package to slim down native-inputs.
+(define-public python-crds-minimal
+ (package/inherit python-crds
+ (name "python-crds-minimal")
+ (arguments
+ (list #:tests? #f))
+ (native-inputs
+ (list python-setuptools
+ python-setuptools-scm))
+ (propagated-inputs
+ (list python-astropy
+ python-numpy
+ python-filelock
+ python-asdf
+ python-requests
+ python-parsley))))
+
(define-public python-czml3
(package
(name "python-czml3")