diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-08-27 08:11:03 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-08-27 08:11:03 +0200 |
commit | baf5b0745446dabe8166d860996dc54cfa09db3e (patch) | |
tree | 2361e8f8b085d59ec998b1037329b9fe5237b2c2 /gnu/packages/python-crypto.scm | |
parent | 8a0a5b4e6289eaa357bd2134101507aea320cc39 (diff) | |
parent | 5856e185a3d4f47e27dfd064a231b3a1d44a6494 (diff) |
Merge tracking branch 'master' into gnome-team.
Diffstat (limited to 'gnu/packages/python-crypto.scm')
-rw-r--r-- | gnu/packages/python-crypto.scm | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index cfd1146f06..e6483996fd 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -735,7 +735,7 @@ ECB and OFB).") (define-public python-asn1crypto (package (name "python-asn1crypto") - (version "1.4.0") + (version "1.5.1") (source (origin (method git-fetch) @@ -745,18 +745,20 @@ ECB and OFB).") (file-name (git-file-name name version)) (sha256 (base32 - "19abibn6jw20mzi1ln4n9jjvpdka8ygm4m439hplyrdfqbvgm01r")))) + "1qsg06qrqnzixmrm65ibg503y2gffd675h1si4jgh92s315w1jrk")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (replace 'check - (lambda _ - (invoke "python" "run.py" "tests")))))) + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "python" "run.py" "tests"))))))) (home-page "https://github.com/wbond/asn1crypto") (synopsis "ASN.1 parser and serializer in Python") - (description "asn1crypto is an ASN.1 parser and serializer with definitions -for private keys, public keys, certificates, CRL, OCSP, CMS, PKCS#3, PKCS#7, -PKCS#8, PKCS#12, PKCS#5, X.509 and TSP.") + (description + "@code{asn1crypto} is an ASN.1 parser and serializer with definitions for +private keys, public keys, certificates, CRL, OCSP, CMS, PKCS#3, PKCS#7, PKCS#8, +PKCS#12, PKCS#5, X.509 and TSP.") (license license:expat))) (define-public python-pynacl |