[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/07: gnu: python-bwapy: Remove sanity-check.
From: |
guix-commits |
Subject: |
07/07: gnu: python-bwapy: Remove sanity-check. |
Date: |
Sun, 5 Dec 2021 11:39:16 -0500 (EST) |
rekado pushed a commit to branch core-updates-frozen
in repository guix.
commit 6db3c536e89deb8a204e756f427614925a7d2582
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sun Dec 5 17:38:15 2021 +0100
gnu: python-bwapy: Remove sanity-check.
* gnu/packages/bioinformatics.scm (python-bwapy)[arguments]: Add phase
'relax-requirements to accept a slightly older version of wheel; remove the
'sanity-check phase.
---
gnu/packages/bioinformatics.scm | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 1aa61ce..f8551b7 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -15509,6 +15509,16 @@ sequences")
(snippet
'(for-each delete-file (find-files "." "\\.o$")))))
(build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'relax-requirements
+ (lambda _
+ (substitute* "setup.py"
+ (("wheel>=0.34") "wheel>=0.30"))))
+ ;; TODO: it's possible that the import error points to a real
+ ;; problem with the C sources.
+ (delete 'sanity-check))))
(propagated-inputs
`(("python-cffi" ,python-cffi)
("python-setuptools" ,python-setuptools)
- branch core-updates-frozen updated (f2b99e3 -> 6db3c53), guix-commits, 2021/12/05
- 01/07: gnu: velvet: Remove trailing #T., guix-commits, 2021/12/05
- 03/07: gnu: python-bbknn: Add missing input., guix-commits, 2021/12/05
- 04/07: gnu: python-bbknn: Fix sanity-check phase., guix-commits, 2021/12/05
- 02/07: gnu: velvet: Add missing TeX package., guix-commits, 2021/12/05
- 06/07: gnu: Remove python2-plastid., guix-commits, 2021/12/05
- 05/07: gnu: Remove python2-twobitreader., guix-commits, 2021/12/05
- 07/07: gnu: python-bwapy: Remove sanity-check.,
guix-commits <=