guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 1beeda378744b27c7a10e3c5dd1ccbb29394cf50
Author: Nicolas Graves <[email protected]>
AuthorDate: Wed Feb 11 00:52:02 2026 +0100
gnu: python-asn1crypto: Update to 1.5.1-0.b763a75.
* gnu/packages/python-crypto.scm (python-asn1crypto): Update to
1.5.1-0.b763a75.
Change-Id: Ica010bc5e708b1a743cd6e2fa32b7b6b12b8c59e
Reviewed-by: Hugo Buddelmeijer <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-crypto.scm | 42 ++++++++++++++++++++++--------------------
1 file changed, 22 insertions(+), 20 deletions(-)
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 0071cb4e9c..679322291a 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -798,28 +798,30 @@ ECB and OFB).")
(license license:expat)))
(define-public python-asn1crypto
- (package
- (name "python-asn1crypto")
- (version "1.5.1")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/wbond/asn1crypto")
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "1qsg06qrqnzixmrm65ibg503y2gffd675h1si4jgh92s315w1jrk"))))
- (build-system pyproject-build-system)
- (arguments (list #:test-backend #~'unittest))
- (native-inputs (list python-setuptools))
- (home-page "https://github.com/wbond/asn1crypto")
- (synopsis "ASN.1 parser and serializer in Python")
- (description
- "@code{asn1crypto} is an ASN.1 parser and serializer with definitions for
+ (let ((commit "b763a757bb2bef2ab63620611ddd8006d5e9e4a2")
+ (revision "0"))
+ (package
+ (name "python-asn1crypto")
+ (version (git-version "1.5.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/wbond/asn1crypto")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0xmrms7lj87pskgirf7ff21yih76kp2688x4n24wi2pd8269lmfp"))))
+ (build-system pyproject-build-system)
+ (arguments (list #:test-backend #~'unittest))
+ (native-inputs (list python-setuptools))
+ (home-page "https://github.com/wbond/asn1crypto")
+ (synopsis "ASN.1 parser and serializer in Python")
+ (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)))
+ (license license:expat))))
(define-public python-pynacl
(package