~ruther/guix-local

8b10e6a14b2af06c6e4d4ba0ba91d1eb8d12f252 — Sharlatan Hellseher a month ago 3c140ef
gnu: python-decoupler: Update to 2.1.2.

* gnu/packages/bioinformatics.scm (python-decoupler): Update to 2.1.2.
[phases]{relax-requirements}: New phases.

Change-Id: Iaa57b2d4ef96d661a68310c64c6f2e2b8aee520b
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
1 files changed, 9 insertions(+), 2 deletions(-)

M gnu/packages/bioinformatics.scm
M gnu/packages/bioinformatics.scm => gnu/packages/bioinformatics.scm +9 -2
@@ 2741,7 2741,7 @@ parsing of Variant Call Format (VCF) files.")
(define-public python-decoupler
  (package
    (name "python-decoupler")
    (version "2.1.1")
    (version "2.1.2")
    (source (origin
              (method git-fetch)
              (uri (git-reference


@@ 2750,10 2750,11 @@ parsing of Variant Call Format (VCF) files.")
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0b15n5sq940sn29jsgmdkkm4fcpzfq1n221scfwhjxb4ybdpsz4v"))))
                "05d70zrgv8l9ihkgmr7hqcgn66yx1v1lm0hcfbc370asp97k2f74"))))
    (build-system pyproject-build-system)
    (arguments
     (list
      ;; tests: 227 passed, 35 deselected, 37 warnings
      #:test-flags
      '(list "-k" (string-join
                   ;; Tests requiring internet access to reach out


@@ 2783,6 2784,12 @@ parsing of Variant Call Format (VCF) files.")
                   " and not "))
      #:phases
      '(modify-phases %standard-phases
         (add-after 'unpack 'relax-requirements
           (lambda _
             (substitute* "pyproject.toml"
               ;; See: <https://github.com/statsmodels/statsmodels/issues/9584>.
               ;; Resolved in statsmodels0.14.5, current in Guix.
               (("scipy<1.16") "scipy"))))
         (add-before 'check 'set-home
           ;; Some tests require a home directory to be set.
           (lambda _ (setenv "HOME" "/tmp")))