guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 64dac23e32feb9194f5b49657334b0ab6856c92c
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Oct 30 11:28:28 2025 +0000
gnu: python-deeptoolsintervals: Switch to pyproject.
* gnu/packages/bioinformatics.scm (python-deeptoolsintervals):
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-pytest and python-setuptools.
Change-Id: I2f95aa4f526f879d9407d7625834f389e384bc39
---
gnu/packages/bioinformatics.scm | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index b820182e20..4081d78abc 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -6447,7 +6447,15 @@ files. The code was previously part of the cutadapt
tool.")
(sha256
(base32
"1xnl80nblysj6dylj4683wgrfa425rkx4dp5k65hvwdns9pw753x"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:test-flags
+ #~(list "--pyargs" "deeptoolsintervals"
+ "--doctest-modules")))
+ (native-inputs
+ (list python-pytest
+ python-setuptools))
(inputs
(list zlib))
(home-page "https://github.com/deeptools/deeptools_intervals")