summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-08-15 13:17:25 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-09-01 18:34:24 +0100
commitea215f82291fd1b21bfdd004f0b083dbf61a6814 (patch)
tree940329b2e9a5a732c5adb61a31c4820d024ddd39 /gnu
parentdbe0b6a7fefffa5bec3e3de3090ca50445f14e5e (diff)
gnu: Add python-clipy-like.
* gnu/packages/astronomy.scm (python-clipy-like): New variable. Relates-to: guix/guix!10702
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/astronomy.scm28
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 98448e76f6c..6a1ef5b7289 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -4451,6 +4451,34 @@ data in the CHIANTI database.")
4451 python-setuptools)) 4451 python-setuptools))
4452 (synopsis "Python bindings for CIANNA"))) 4452 (synopsis "Python bindings for CIANNA")))
4453 4453
4454(define-public python-clipy-like
4455 (package
4456 (name "python-clipy-like")
4457 (version "0.15")
4458 (source
4459 (origin
4460 (method git-fetch)
4461 (uri (git-reference
4462 (url "https://github.com/benabed/clipy")
4463 (commit (string-append "clipy_" version))))
4464 (file-name (git-file-name name version))
4465 (sha256 (base32 "0dg4l6ala51ip8ijhlpgli4giw6f1vg3dc4gxpq7pa719zwgfd9m"))))
4466 (build-system pyproject-build-system)
4467 (arguments
4468 (list #:tests? #f)) ;no tests
4469 (native-inputs
4470 (list python-flit-core))
4471 (propagated-inputs
4472 (list python-astropy
4473 python-numpy))
4474 (home-page "https://github.com/benabed/clipy")
4475 (synopsis "Pure Python CLIK implementation with JAX support")
4476 (description
4477 "@code{clipy} is a pure python implementation of most of
4478@url{https://github.com/benabed/clik, CLIK} with JAX support (see here for the
4479list of currently supported likelihoods).")
4480 (license license:expat)))
4481
4454(define-public python-cmyt 4482(define-public python-cmyt
4455 (package 4483 (package
4456 (name "python-cmyt") 4484 (name "python-cmyt")