guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit ea8a3021fbcaca9e529a87d73b9abbc15e8f3612
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Jun 27 22:45:03 2026 +0100
gnu: python-google-crc32c: Update to 1.8.0.
* gnu/packages/python-crypto.scm (python-google-crc32c): Update to 1.8.0.
[native-inputs]: Remove python-wheel.
---
gnu/packages/python-crypto.scm | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index dd8c1b4edc..9a44cdf1d1 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -1471,7 +1471,7 @@ implements RFC 6125 fully and plans to add other relevant
RFCs too.")
(define-public python-google-crc32c
(package
(name "python-google-crc32c")
- (version "1.3.0")
+ (version "1.8.0")
(source
(origin
(method git-fetch)
@@ -1480,10 +1480,13 @@ implements RFC 6125 fully and plans to add other
relevant RFCs too.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "005ra4pfv71rq53198k7q6k63f529q3g6hkbxbwfcf82jr77hxga"))))
+ (base32 "01wb7c6mfjlqqdsfd059q36n8bn8qb9yhjcvi97mnyx2wp4ddm3c"))))
(build-system pyproject-build-system)
- (inputs (list crc32c))
- (native-inputs (list python-pytest python-setuptools python-wheel))
+ (native-inputs
+ (list python-pytest
+ python-setuptools))
+ (inputs
+ (list crc32c))
(home-page "https://github.com/googleapis/python-crc32c")
(synopsis "Python wrapper of Google CRC32C")
(description