summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/astronomy.scm20
1 files changed, 15 insertions, 5 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index a3ab0d88bff..98448e76f6c 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -4486,16 +4486,22 @@ monochromatic sequential colormaps like @code{blue}, @code{green}, and
4486(define-public python-cobaya 4486(define-public python-cobaya
4487 (package 4487 (package
4488 (name "python-cobaya") 4488 (name "python-cobaya")
4489 (version "3.6.2") 4489 ;; 3.6.2 (2026-03-27); to support changes in pythoncamb. see:
4490 ;; <https://github.com/CobayaSampler/cobaya/pull/495>.
4491 (properties '((commit . "b76b6fed2a6c8c5594c6f92d5058bef10079746a")
4492 (revision . "0")))
4493 (version (git-version "3.6.2"
4494 (assoc-ref properties 'revision)
4495 (assoc-ref properties 'commit)))
4490 (source 4496 (source
4491 (origin 4497 (origin
4492 (method git-fetch) 4498 (method git-fetch)
4493 (uri (git-reference 4499 (uri (git-reference
4494 (url "https://github.com/CobayaSampler/cobaya") 4500 (url "https://github.com/CobayaSampler/cobaya")
4495 (commit (string-append "v" version)))) 4501 (commit (assoc-ref properties 'commit))))
4496 (file-name (git-file-name name version)) 4502 (file-name (git-file-name name version))
4497 (sha256 4503 (sha256
4498 (base32 "06g6yz3r1xfmxi4rnxc6549i4lby7h9h8f17id8m1k2px1hyh628")))) 4504 (base32 "1ni2a7nr0vy49j2d5lh5zyv5bdpy735axxvh8b16r6wnhjv728pm"))))
4499 (build-system pyproject-build-system) 4505 (build-system pyproject-build-system)
4500 (arguments 4506 (arguments
4501 (list 4507 (list
@@ -4515,7 +4521,6 @@ monochromatic sequential colormaps like @code{blue}, @code{green}, and
4515 (setenv "COBAYA_PACKAGES_PATH" "/tmp")))))) 4521 (setenv "COBAYA_PACKAGES_PATH" "/tmp"))))))
4516 (native-inputs 4522 (native-inputs
4517 (list python-camb 4523 (list python-camb
4518 ;; python-classy
4519 python-flaky 4524 python-flaky
4520 python-pytest 4525 python-pytest
4521 python-pytest-xdist 4526 python-pytest-xdist
@@ -4533,7 +4538,12 @@ monochromatic sequential colormaps like @code{blue}, @code{green}, and
4533 python-requests 4538 python-requests
4534 python-scipy 4539 python-scipy
4535 python-tqdm 4540 python-tqdm
4536 python-typing-extensions)) 4541 python-typing-extensions
4542 ;; [optional]
4543 python-matplotlib
4544 python-mpi4py
4545 python-numba
4546 python-pyside-6))
4537 (home-page "https://github.com/CobayaSampler/cobaya") 4547 (home-page "https://github.com/CobayaSampler/cobaya")
4538 (synopsis "Code for Bayesian analysis in Cosmology") 4548 (synopsis "Code for Bayesian analysis in Cosmology")
4539 (description 4549 (description