diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-07-24 23:01:46 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-25 11:32:15 +0100 |
commit | 5b7372efe811636fba7ae4b7717cdc3c3622a052 (patch) | |
tree | a88a0954796eb06b1d96018775d1b7830cabf764 /gnu/packages/python-xyz.scm | |
parent | 7d6713af10fc4449845bfef73e11f8749669169f (diff) |
gnu: python-mamba: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-mamba):
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools, python-wheel.
Change-Id: If9403dac25e0ccea862bcd7d268e11a982c10bc2
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 3944a67321..4b5d51d003 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -26228,10 +26228,11 @@ package attempts to address the shortcomings of @code{isodate}.") (file-name (git-file-name name version)) (sha256 (base32 "1irlmakf0lf1sb8jp5kmkvxhq6b8ij9q5zn0zimdpnkq627mazbs")))) - (build-system python-build-system) + (build-system pyproject-build-system) (arguments `(#:tests? #f)) ;No test (propagated-inputs (list python-clint python-coverage)) + (native-inputs (list python-setuptools python-wheel)) (home-page "https://nestorsalceda.com/mamba/") (synopsis "Test runner for Python") (description |