summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-12-31 17:33:09 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-31 17:33:28 +0000
commitcf4296ecb1c451162144bf6b98e129f522d2056e (patch)
treee449de54914242466f6742d6077549e61ec15b73 /gnu/packages
parent7c849173505d8edbc6f9f56d136ddf5431672a67 (diff)
gnu: cnvkit: Fix tests.
* gnu/packages/bioinformatics.scm (cnvkit): [arguments] <phases>: Add 'fix-pytest-config. [propagated-inputs]: Remove python-future. Change-Id: I845709c8e91e8ed86dcc25a9d5dc0469e8005f0b
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/bioinformatics.scm15
1 files changed, 12 insertions, 3 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 71c48454163..a702188bf45 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -21060,15 +21060,24 @@ polymorphisms) and indels with respect to a reference genome and more.")
21060 (origin 21060 (origin
21061 (method git-fetch) 21061 (method git-fetch)
21062 (uri (git-reference 21062 (uri (git-reference
21063 (url "https://github.com/etal/cnvkit") 21063 (url "https://github.com/etal/cnvkit")
21064 (commit (string-append "v" version)))) 21064 (commit (string-append "v" version))))
21065 (file-name (git-file-name name version)) 21065 (file-name (git-file-name name version))
21066 (sha256 21066 (sha256
21067 (base32 "090yh17symcahddx399kcx0mcw4gdrcc2jil3p8lb92r8c8kglb5")))) 21067 (base32 "090yh17symcahddx399kcx0mcw4gdrcc2jil3p8lb92r8c8kglb5"))))
21068 (build-system pyproject-build-system) 21068 (build-system pyproject-build-system)
21069 (arguments
21070 (list
21071 ;; tests: 70 passed, 1 warning
21072 #:phases
21073 #~(modify-phases %standard-phases
21074 (add-after 'unpack 'fix-pytest-config
21075 (lambda _
21076 (substitute* "pyproject.toml"
21077 (("filterwarnings =.*")
21078 "")))))))
21069 (propagated-inputs 21079 (propagated-inputs
21070 (list python-biopython 21080 (list python-biopython
21071 python-future
21072 python-matplotlib 21081 python-matplotlib
21073 python-numpy 21082 python-numpy
21074 python-pandas 21083 python-pandas