diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2025-02-05 15:07:21 +0100 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2025-02-05 15:08:30 +0100 |
| commit | 216a37ba5005148bbb88c4f6b8e9dd5904d49074 (patch) | |
| tree | 5c593228a4a924d14efa94c336453ef1d1adb20e /gnu | |
| parent | a53bd6f27b0a49491dc87c2476555682fef6c47e (diff) | |
gnu: python-harmonypy: Patch invalid field in pyproject.toml.
* gnu/packages/bioinformatics.scm (python-harmonypy)[arguments]: Add phase
'patch-pyproject.
Change-Id: I0d80b96458c7bb5ddb571ad640babf6b95fb051f
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/bioinformatics.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 8752d0830e7..ad950b40904 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -2793,6 +2793,15 @@ from single-cell RNA-sequencing.") (sha256 (base32 "15lxgncrnsx1hapfx78pvx4rjx5d48hqixdnacdy55d84myfmrym")))) (build-system pyproject-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'patch-pyproject + (lambda _ + ;; License field should not be empty. + (substitute* "pyproject.toml" + (("^license = \"\"") ""))))))) (propagated-inputs (list python-numpy python-pandas python-scikit-learn |
