diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-04-25 20:47:48 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-04-25 21:18:36 +0200 |
commit | 4598928a90775636b80ff8ca48ed1ca62baca7b5 (patch) | |
tree | 5f592a4df9ecd393407aefff28d28e75afd6c038 /gnu/packages/bioinformatics.scm | |
parent | 92a903499b21ded788340ff36605fe25e5ff2abe (diff) | |
download | guix-4598928a90775636b80ff8ca48ed1ca62baca7b5.tar guix-4598928a90775636b80ff8ca48ed1ca62baca7b5.tar.gz |
gnu: cwltool: Use pyproject-build-system.
"setup.py install is deprecated. Use build and pip and other standards-based
tools." It then falls back to attempting to install packages via pip.
* gnu/packages/bioinformatics.scm (cwltool)[build-system]: Use
pyproject-build-system.
Diffstat (limited to 'gnu/packages/bioinformatics.scm')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 4be8635515..2bf00e14ca 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -3797,7 +3797,7 @@ doublets in single-cell RNA-seq data.") (sha256 (base32 "1jmrm0qrqgka79avc1kq63fgh20gx6g07fc8p3iih4k85vhdyl3f")))) - (build-system python-build-system) + (build-system pyproject-build-system) (arguments `(#:phases (modify-phases %standard-phases |