~ruther/guix-local

a9547a6c09913eb78089eafc549e54620136f11d — Sharlatan Hellseher 3 months ago eff9431
gnu: python-cobaya: Update to 3.6.

* gnu/packages/astronomy.scm (python-cobaya): Update to 3.6.
[native-inputs]: Add python-camb.

Change-Id: I819faf9857e8a49a999562d98da267e55eb995c9
1 files changed, 9 insertions(+), 9 deletions(-)

M gnu/packages/astronomy.scm
M gnu/packages/astronomy.scm => gnu/packages/astronomy.scm +9 -9
@@ 3685,26 3685,24 @@ monochromatic sequential colormaps like @code{blue}, @code{green}, and
(define-public python-cobaya
  (package
    (name "python-cobaya")
    (version "3.5.7")
    (version "3.6")
    (source
     (origin
       (method git-fetch)               ;no tests in pypi release
       (method git-fetch)
       (uri (git-reference
              (url "https://github.com/CobayaSampler/cobaya")
              (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "17ccka051lknv05dlr1wfb2ha2qj27av2q2s6ir2vrcgx5c2szfp"))))
        (base32 "1jws7kb3578mgbimxxanbhzkrxpmcby0jqxq9zlf04i5ilqn4s6m"))))
    (build-system pyproject-build-system)
    (arguments
     (list
      ;; tests: 76 passed, 3 skipped, 93 xfailed, 2 warnings
      #:test-flags
      ;; Test options were taken from GitHub action workflow.
      #~(list "--no-flaky-report"
              "--numprocesses" (number->string (parallel-job-count))
      #~(list "--numprocesses" (number->string (min 8 (parallel-job-count)))
              "--skip-not-installed"
              "-k" "not test_planck_NPIPE_p_CamSpec_camb_install and not test_grid"
              "tests")
              "-k" "not test_planck_NPIPE_p_CamSpec_camb and not test_grid")
      #:phases
      #~(modify-phases %standard-phases
          (add-before 'check 'pre-check


@@ 3712,7 3710,9 @@ monochromatic sequential colormaps like @code{blue}, @code{green}, and
              (setenv "HOME" "/tmp")
              (setenv "COBAYA_PACKAGES_PATH" "/tmp"))))))
    (native-inputs
     (list python-flaky
     (list python-camb
           ;; python-classy
           python-flaky
           python-pytest
           python-pytest-xdist
           python-setuptools))