guix_mirror_bot pushed a commit to branch master
in repository guix.
commit f5664f96cb02524d9c622835363bfb7038fd38cf
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Oct 25 11:52:33 2025 +0100
gnu: python-style: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-style)[build-system]: Switch to
pyproject-build-system.
[arguments] <tests?>: No tests in PyPI archive.
[native-inputs]: Add python-setuptools.
Change-Id: I79a4dff8a1a90a850986159802bcf8b7f7c1d9bd
---
gnu/packages/python-xyz.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 050e89da95..a0c9eef4ed 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -34871,7 +34871,11 @@ Python CLI apps.")
(uri (pypi-uri "style" version))
(sha256
(base32 "1dcfb578v9mrwh92rgms87gql0gp4vgj6l9hpgyfg0wbd3rh3bfh"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:tests? #f)) ;no tests in PyPI, package is 6y old
+ (native-inputs
+ (list python-setuptools))
(home-page "https://github.com/lmittmann/style")
(synopsis "Terminal string styling")
(description