diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-05-20 13:04:25 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-05-20 13:04:25 +0200 |
commit | 97d9741f0be56d4a2860dc8620b56f859aefefee (patch) | |
tree | ec0d263d6d9fbcc8ff287bbde9b34d5fadc9833f /gnu/packages | |
parent | da88e39ce0d9a7aaae36a7a5fe8706ab15cde18e (diff) |
gnu: Add python-google-crc32c.
* gnu/packages/python-web.scm (python-google-crc32c): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-web.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 689a99b518..04cf3b5e3c 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -6733,6 +6733,25 @@ 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 url-fetch) + (uri (pypi-uri "google-crc32c" version)) + (sha256 + (base32 "1ps4qaccij6cixs91772y9f9r1n702yfzy4qqmds6x5h7qkycv97")))) + (build-system python-build-system) + (native-inputs (list python-pytest)) + (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-w3lib (package (name "python-w3lib") |