guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 939024109096ceb1170d678e2e7d8318a2566616
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Jul 11 22:32:01 2025 +0100
gnu: python-six-bootstrap: Update to 1.17.0.
* gnu/packages/python-build.scm (python-six-bootstrap): Update to 1.17.0.
[build-system]: Use pyproject.
[native-inputs]: Add python-setuptools.
Change-Id: I3d673d13efe60d90221061759e4ea90fd4164882
---
gnu/packages/python-build.scm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 597d4058fe..59c43005b2 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -157,16 +157,17 @@ write-only counterpart to Tomli, which is a read-only
TOML parser.")
(define-public python-six-bootstrap
(package
(name "python-six-bootstrap")
- (version "1.16.0")
+ (version "1.17.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "six" version))
(sha256
- (base32
- "09n9qih9rpj95q3r4a40li7hk6swma11syvgwdc68qm1fxsc6q8y"))))
- (build-system python-build-system)
+ (base32 "109ajcsfhrz33lbwbb337w34crc3lb9rjnxrcpnbczlf8rfk6w7z"))))
+ (build-system pyproject-build-system)
(arguments `(#:tests? #f)) ;to avoid pytest dependency
+ (native-inputs
+ (list python-setuptools))
(home-page "https://pypi.org/project/six/")
(synopsis "Python 2 and 3 compatibility utilities")
(description