gnu: python-sshpubkeys: Update to 3.2.0.

* gnu/packages/python-xyz.scm (python-sshpubkeys): Update to
3.2.0. Improve style.
[build-system]: Use pyproject.
[arguments] <tests?>: Disable as all are broken.
[native-inputs]: Add python-setuptools, and python-wheel.

Change-Id: Iff258cf897485f289148e7de56c4b0210732d87d
This commit is contained in:
Sharlatan Hellseher 2025-07-01 13:56:09 +01:00
parent c0095af35e
commit 14bbe08750
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -9357,20 +9357,26 @@ augment the changelog, but it can be used for other documents, too.")
(define-public python-sshpubkeys (define-public python-sshpubkeys
(package (package
(name "python-sshpubkeys") (name "python-sshpubkeys")
(version "3.1.0") (version "3.2.0")
(home-page "https://github.com/ojarva/python-sshpubkeys") (source
(source (origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url home-page) (url "https://github.com/ojarva/python-sshpubkeys")
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "0n7bjq8wifdw09mxkfzdkybij0csqjcifyxz8dbxy2iffjv5mqnq"))))
"1h4gwmcfn84kkqh83km1vfz8sc5kr2g4gzgzmr8gz704jmqiv7nq")))) (build-system pyproject-build-system)
(build-system python-build-system) (arguments
(list #:tests? #f)) ; XXX: All tests fail
(native-inputs
(list python-setuptools
python-wheel))
(propagated-inputs (propagated-inputs
(list python-cryptography python-ecdsa)) (list python-cryptography
python-ecdsa))
(home-page "https://github.com/ojarva/python-sshpubkeys")
(synopsis "OpenSSH public key parser") (synopsis "OpenSSH public key parser")
(description (description
"This package provides a library for parsing and validating OpenSSH "This package provides a library for parsing and validating OpenSSH