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
This commit is contained in:
Sharlatan Hellseher 2025-07-11 22:32:01 +01:00
parent aac71e0112
commit 8a71151402
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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