summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-21 18:32:12 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:51 +0100
commit346be6481e2ea480f873b02bdf17db4a74095543 (patch)
tree950d88c43692f3e0f7548d0f757212d94b6e0b3c /gnu
parentfcac316c2dd7360397f68bb0ee7eb664c638a535 (diff)
gnu: python-bwapy: Fix build.
* gnu/packages/bioinformatics.scm (python-bwapy): Fix build. [build-system]: Switch to pyproject-build-system. [arguments] <tests?>: No tests. <phases>: Remove 'relax-requirements. [propagated-inputs]: Remove python-wheel. Change-Id: I2dcf8eac974fca113ef15b4f1267dc8bd7837a96
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/bioinformatics.scm19
1 files changed, 8 insertions, 11 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index dcdeef35d81..18352f35291 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -24505,19 +24505,16 @@ sequences")
(modules '((guix build utils)))
(snippet
'(for-each delete-file (find-files "." "\\.o$")))))
- (build-system python-build-system)
+ (build-system pyproject-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))))
+ (list #:tests? #f ;no tests
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; TODO: it's possible that the import error points to a real
+ ;; problem with the C sources.
+ (delete 'sanity-check))))
(propagated-inputs
- (list python-cffi python-setuptools python-wheel))
+ (list python-cffi python-setuptools))
(inputs
(list zlib))
(home-page "https://github.com/ACEnglish/bwapy")