From f5664f96cb02524d9c622835363bfb7038fd38cf Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sat, 25 Oct 2025 11:52:33 +0100 Subject: [PATCH] gnu: python-style: Switch to pyproject. * gnu/packages/python-xyz.scm (python-style)[build-system]: Switch to pyproject-build-system. [arguments] : 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 050e89da95f953765d3931b5a48a56b45ebea38f..a0c9eef4edf1d99755469516a8b788982e449f5f 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