1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-08 14:10:38 +02:00

gnu: pairadise: Disable missing tests.

* gnu/packages/bioinformatics.scm (pairadise):
[arguments] <tests?>: No tests.
[native-inputs]: Remove python-wheel.

Change-Id: I0545b4ce56562ba9c5f875133cff33fbd1126459
This commit is contained in:
Sharlatan Hellseher
2026-02-04 13:14:37 +00:00
committed by Andreas Enge
parent 0aa63b09d1
commit 4e0544a3ad

View File

@@ -14597,13 +14597,14 @@ Needleman-Wunsch).")
(build-system pyproject-build-system)
(arguments
(list
#:tests? #f ;no tests
#:phases
'(modify-phases %standard-phases
(add-after 'unpack 'chdir
(lambda _ (chdir "pairadise")))
(add-before 'build '2to3
(lambda _ (invoke "2to3" "--write" "--nobackups" "."))))))
(native-inputs (list python-setuptools python-wheel))
(native-inputs (list python-setuptools))
(inputs (list star))
(propagated-inputs (list python-pysam))
(home-page "https://github.com/Xinglab/PAIRADISE")