guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 99f7b8fcf903ac89f4959dc960cb91ccd25402e1
Author: Nicolas Graves <[email protected]>
AuthorDate: Thu Jul 31 22:20:15 2025 +0200
gnu: python-test-utils: Switch to pyproject.
* gnu/packages/python-check.scm (python-test-utils):
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools, python-wheel.
Change-Id: Ifc02d90691e1d72cff5ba9034ee99718ebff2051
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-check.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 66320312f7..c182ca93e4 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -3867,7 +3867,9 @@ data in a standard way.")
(uri (pypi-uri "test-utils" version))
(sha256
(base32 "0cs0gyihnkj8ya4yg3ld3ly73mpxrkn2gq9acamclhqvhxsv7zd6"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-setuptools python-wheel))
(home-page "https://github.com/Kami/python-test-utils/")
(synopsis "Utilities for functional and integration tests")
(description