summaryrefslogtreecommitdiff
path: root/gnu/packages/python-science.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-02-04 20:05:00 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:56 +0100
commit200ffe64973a45e34abebebd5122468a44a62f8d (patch)
tree37e3b4d424c2c518d6a026736639284a0f6d3246 /gnu/packages/python-science.scm
parentceed5daa2b0aafccea0031cd4cb2a95563f64d3d (diff)
gnu: snakemake: Update to 8.30.0.
* gnu/packages/python-science.scm (snakemake): Update to 8.30.0. [arguments]<#:test-flags>: Refresh them. [native-inputs]: Remove python-wheel. Change-Id: I5b509cdf177224a71c313fed32f913cca85410d6 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r--gnu/packages/python-science.scm9
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 39496e55ff5..1ef039b34e0 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -6100,13 +6100,13 @@ are source structure, project manager, interactive help, workspace...")
(define-public snakemake
(package
(name "snakemake")
- (version "8.29.2")
+ (version "8.30.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "snakemake" version))
(sha256
- (base32 "1ilpmrjmnc529p4gw2x23ik1d8b5pm6k1dhq08dknvfjsf3vgyjr"))))
+ (base32 "08k6qk886a6f79higkd0pjjrq9sn6w5gk0gdgx88rhr1aln1qk7x"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -6117,7 +6117,7 @@ are source structure, project manager, interactive help, workspace...")
"--ignore=tests/test_script_py/scripts/test_explicit_import.py"
"--ignore=tests/test_output_index.py"
;; We don't care about testing old python@3.7 on Guix.
- "--ignore=tests/test_conda_python_3_7_script/test_script.py"
+ "--ignore=tests/test_conda_python_3_7_script/test_script_python_3_7.py"
;; Those require additional snakemake plugins.
"--ignore=tests/test_api.py"
"--ignore=tests/test_executor_test_suite.py"
@@ -6206,8 +6206,7 @@ are source structure, project manager, interactive help, workspace...")
python-numpy
python-pandas
python-setuptools
- python-tomli
- python-wheel))
+ python-tomli))
(home-page "https://snakemake.readthedocs.io")
(synopsis "Python-based execution environment for make-like workflows")
(description