From 36ea29115cd53f63017b61fc4f6633bb5e1d7542 Mon Sep 17 00:00:00 2001 From: Rikard Nordgren Date: Sun, 21 May 2023 17:56:57 +0000 Subject: gnu: Add python-crcmod. * gnu/packages/python-crypto.scm (python-crcmod): New variable. Co-authored-by: jgart Signed-off-by: jgart --- gnu/packages/python-crypto.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'gnu/packages/python-crypto.scm') diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index 7b2ac2db6e..528bfe604a 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -801,6 +801,32 @@ Networking and Cryptography library. These libraries have a stated goal of improving usability, security and speed.") (license license:asl2.0))) +(define-public python-crcmod + (package + (name "python-crcmod") + (version "1.7") + (source (origin + (method url-fetch) + (uri (pypi-uri "crcmod" version)) + (sha256 + (base32 + "07k0hgr42vw2j92cln3klxka81f33knd7459cn3d8aszvfh52w6w")))) + (build-system python-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + ;; As per the Unit Testing subsection in the README. + (invoke "python" "-m" "crcmod.test"))))))) + (synopsis "CRC generator for Python") + (description "Python module for generating objects that compute the +Cyclic Redundancy Check.") + (home-page "https://crcmod.sourceforge.net/") + (license license:expat))) + (define-public python-blurhash (package (name "python-blurhash") -- cgit v1.2.3