summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-25 11:52:33 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-26 10:37:07 +0000
commitf5664f96cb02524d9c622835363bfb7038fd38cf (patch)
treefb410b732ba4208cd8934abb07f66df3b6c508e0
parente2438542676a700bcad167eb5be11e94c7360e0b (diff)
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
-rw-r--r--gnu/packages/python-xyz.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 050e89da95f..a0c9eef4edf 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