gnu: python-pyasn1: Update to 0.6.1.

* gnu/packages/python-xyz.scm (python-pyasn1): Update to 0.6.1.
  [build-system]: Use pyproject.
  [arguments] <test-backend>: Use 'unittest.
  [native-inputs]: Add python-setuptools.
  [home-page]: Fix URL as development moved to GitHub.

Change-Id: Idcf44dacf179be325f171cabe9c06f906d0b45ed
This commit is contained in:
Sharlatan Hellseher 2025-07-31 14:13:44 +01:00
parent f146ad534e
commit 9102d23361
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -18200,16 +18200,21 @@ primary use case is APIs defined before keyword-only parameters existed.")
(define-public python-pyasn1 (define-public python-pyasn1
(package (package
(name "python-pyasn1") (name "python-pyasn1")
(version "0.4.8") (version "0.6.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "pyasn1" version)) (uri (pypi-uri "pyasn1" version))
(sha256 (sha256
(base32 (base32
"1fnhbi3rmk47l9851gbik0flfr64vs5j0hbqx24cafjap6gprxxf")))) "0d5h500ig8sp72pabd1wcyglc4951xalbkqahf056dl4vlmhsn3g"))))
(build-system python-build-system) (build-system pyproject-build-system)
(home-page "https://pyasn1.sourceforge.net/") (arguments
(list #:test-backend #~'unittest
#:test-flags #~(list "discover" "tests")))
(native-inputs
(list python-setuptools))
(home-page "https://github.com/pyasn1/pyasn1")
(synopsis "ASN.1 types and codecs") (synopsis "ASN.1 types and codecs")
(description (description
"This is an implementation of ASN.1 types and codecs in Python. It is "This is an implementation of ASN.1 types and codecs in Python. It is