From 09b2af5140019a4819b61f6f64eb228534262e47 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Mon, 6 Oct 2025 11:59:04 +0100 Subject: [PATCH] gnu: python-htsget: Disable tests. * gnu/packages/bioinformatics.scm (python-htsget)[arguments] : They depend on Nose test runner, which is deprecated upstream. [native-inputs]: Remove python-wheel. Change-Id: I9876ff1846c1475e9ad50679ad5beca53e252471 --- gnu/packages/bioinformatics.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 2087717cfe926e0a68d439b3f04d546e372db05a..5cbac4011968295671714f3fe523b2dc856e27a1 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -3108,8 +3108,10 @@ varies in similar way among cells which are nearby in the given metric.") (base32 "111q4pzkav26aa3hkgh948wqlyrq7dq6sjml9z63n3blw8s6b0c4")))) (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ;they depend on Nose test runner (native-inputs - (list python-setuptools-scm python-setuptools python-wheel)) + (list python-setuptools-scm python-setuptools)) (propagated-inputs (list python-humanize python-requests python-six)) (home-page "https://pypi.org/project/htsget/")