From 64dac23e32feb9194f5b49657334b0ab6856c92c Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 30 Oct 2025 11:28:28 +0000 Subject: [PATCH] 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 b820182e20e5283fd247f83cb8ea70483b1aa3f2..4081d78abcff142da02a09f9eb80b1cea131aa22 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")