From d0cc8f6e4f67e332ff7d047b8542520b60024f20 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Mon, 25 Aug 2025 09:31:36 +0200 Subject: [PATCH] gnu: python-google-crc32c: Move to (gnu packages python-crypto). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/python-web.scm (python-google-crc32c): Move from here… * gnu/packages/python-crypto.scm (python-google-crc32c): …to here. Change-Id: I211f02fabaf35fcef7c5bee67675cfb3f590ea95 Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-crypto.scm | 22 ++++++++++++++++++++++ gnu/packages/python-web.scm | 22 ---------------------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index ff78ed12b9d966d7519c7f2d72fcb9e5d1d72bd1..44d7ca46a3deacfdcd37356bb37095dca79de5a4 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -1266,6 +1266,28 @@ simplest case, this means host name verification. However, service_identity implements RFC 6125 fully and plans to add other relevant RFCs too.") (license license:expat))) +(define-public python-google-crc32c + (package + (name "python-google-crc32c") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/googleapis/python-crc32c") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "005ra4pfv71rq53198k7q6k63f529q3g6hkbxbwfcf82jr77hxga")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest python-setuptools python-wheel)) + (home-page "https://github.com/googleapis/python-crc32c") + (synopsis "Python wrapper of Google CRC32C") + (description + "This package provides a Python wrapper of the C library implementation +of the CRC32C hashing algorithm.") + (license license:asl2.0))) + (define-public python-hkdf (package (name "python-hkdf") diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 3cbef973f6d35a67420de84d14ca4d2b8928669e..19528c58c791b43d0e7804af7c6d84a2d0da6a77 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -10078,28 +10078,6 @@ Python.") Client Library for Python.") (license license:expat))) -(define-public python-google-crc32c - (package - (name "python-google-crc32c") - (version "1.3.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/googleapis/python-crc32c") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "005ra4pfv71rq53198k7q6k63f529q3g6hkbxbwfcf82jr77hxga")))) - (build-system pyproject-build-system) - (native-inputs (list python-pytest python-setuptools python-wheel)) - (home-page "https://github.com/googleapis/python-crc32c") - (synopsis "Python wrapper of Google CRC32C") - (description - "This package provides a Python wrapper of the C library implementation -of the CRC32C hashing algorithm.") - (license license:asl2.0))) - (define-public python-google-auth (package (name "python-google-auth")