guix_mirror_bot pushed a commit to branch master
in repository guix.

commit dbe0b6a7fefffa5bec3e3de3090ca50445f14e5e
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Aug 15 00:34:03 2026 +0100

    gnu: python-cobaya: Update to 3.6.2-0.b76b6fe.
    
    * gnu/packages/astronomy.scm (python-cobaya): Update to
    b76b6fed2a6c8c5594c6f92d5058bef10079746a commit.
    [propagated-inputs]: Add python-matplotlib, python-mpi4py, python-numba,
    and python-pyside-6.
    
    Relates-to: guix/guix!10702
---
 gnu/packages/astronomy.scm | 20 +++++++++++++++-----
 1 file changed, 15 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index a3ab0d88bf..98448e76f6 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -4486,16 +4486,22 @@ monochromatic sequential colormaps like @code{blue}, 
@code{green}, and
 (define-public python-cobaya
   (package
     (name "python-cobaya")
-    (version "3.6.2")
+    ;; 3.6.2 (2026-03-27); to support changes in pythoncamb. see:
+    ;; <https://github.com/CobayaSampler/cobaya/pull/495>.
+    (properties '((commit . "b76b6fed2a6c8c5594c6f92d5058bef10079746a")
+                  (revision . "0")))
+    (version (git-version "3.6.2"
+                          (assoc-ref properties 'revision)
+                          (assoc-ref properties 'commit)))
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
               (url "https://github.com/CobayaSampler/cobaya";)
-              (commit (string-append "v" version))))
+              (commit (assoc-ref properties 'commit))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "06g6yz3r1xfmxi4rnxc6549i4lby7h9h8f17id8m1k2px1hyh628"))))
+        (base32 "1ni2a7nr0vy49j2d5lh5zyv5bdpy735axxvh8b16r6wnhjv728pm"))))
     (build-system pyproject-build-system)
     (arguments
      (list
@@ -4515,7 +4521,6 @@ monochromatic sequential colormaps like @code{blue}, 
@code{green}, and
               (setenv "COBAYA_PACKAGES_PATH" "/tmp"))))))
     (native-inputs
      (list python-camb
-           ;; python-classy
            python-flaky
            python-pytest
            python-pytest-xdist
@@ -4533,7 +4538,12 @@ monochromatic sequential colormaps like @code{blue}, 
@code{green}, and
            python-requests
            python-scipy
            python-tqdm
-           python-typing-extensions))
+           python-typing-extensions
+           ;; [optional]
+           python-matplotlib
+           python-mpi4py
+           python-numba
+           python-pyside-6))
     (home-page "https://github.com/CobayaSampler/cobaya";)
     (synopsis "Code for Bayesian analysis in Cosmology")
     (description

Reply via email to