guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit efdab7e84a908d3b77eedee304726d4fc412d26c
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Jul 11 23:22:32 2025 +0100
gnu: python-tomli: Update to 2.2.1.
* gnu/packages/python-build.scm (python-tomli): Update to 2.2.1.
[native-inputs]: Remove python-six-bootstrap.
Change-Id: I6d16fdd95e4fad6a100f3070d22a26f2706fea2a
---
gnu/packages/python-build.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 10451d293a..c23b05e4ca 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -154,17 +154,17 @@ write-only counterpart to Tomli, which is a read-only
TOML parser.")
(define-public python-tomli
(package
(name "python-tomli")
- (version "2.1.0")
+ (version "2.2.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "tomli" version))
(sha256
- (base32 "1f4a9nvy8g82bl0k1wdxz9y1j843ai4l4glp0iyy357c5ap6qr1z"))))
+ (base32 "1zq58p2bplyf0xpi9fnyn4w6vc1fkw8whkj0yxhcwdf8g7ff2ifd"))))
(build-system pyproject-build-system)
(arguments
`(#:tests? #f)) ;disabled to avoid extra dependencies
- (native-inputs (list python-flit-core-bootstrap python-six-bootstrap))
+ (native-inputs (list python-flit-core-bootstrap))
(home-page "https://github.com/hukkin/tomli")
(synopsis "Small and fast TOML parser")
(description "Tomli is a minimal TOML parser that is fully compatible with