guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit e4ce2d5e98149bd829bde52c03872287ce39c4d0
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jul 31 14:41:07 2025 +0100
gnu: python-pyasn1-modules: Update to 0.4.2.
* gnu/packages/python-xyz.scm (python-pyasn1-modules): Update to 0.4.2.
[build-system]: Use pyproject.
[arguments] <test-backend>: Use unittest.
[native-inputs]: Add python-setuptools.
[home-page]: Fix URL as the project has migrated to GitHub.
Change-Id: I9c40854215589fbae87f9f7c44aa5c52e1f47cb9
---
gnu/packages/python-xyz.scm | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5acceb375d..9751e4d23b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18249,18 +18249,23 @@ suitable for a wide range of protocols based on the
ASN.1 specification.")
(define-public python-pyasn1-modules
(package
(name "python-pyasn1-modules")
- (version "0.2.8")
+ (version "0.4.2")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "pyasn1-modules" version))
+ (uri (pypi-uri "pyasn1_modules" version))
(sha256
(base32
- "0pp6dcagd8c2c9qx3lahc1rdwlnmm0y0siqr5icjq2r32b3q8pwh"))))
- (build-system python-build-system)
+ "1rj1x4333b20chwslljsihngllj6yls63jmi8klam00ahzg92w37"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:test-backend #~'unittest
+ #:test-flags #~(list "discover" "tests")))
+ (native-inputs
+ (list python-setuptools))
(propagated-inputs
(list python-pyasn1))
- (home-page "https://sourceforge.net/projects/pyasn1/")
+ (home-page "https://github.com/pyasn1/pyasn1-modules")
(synopsis "ASN.1 codec implementations")
(description
"Pyasn1-modules is a collection of Python modules providing ASN.1 types
and