diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-01 13:56:09 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-02 23:16:29 +0100 |
| commit | 14bbe08750ea84b7d0ffd168cfcf6e08a0838ab0 (patch) | |
| tree | 783f16260c445931c58018257610a7920af64e34 /gnu/packages | |
| parent | c0095af35e3ce99597cd526cac0e6cfd1030fca6 (diff) | |
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
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 32 |
1 files changed, 19 insertions, 13 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e8a1291dae6..d0069b967f5 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9357,20 +9357,26 @@ augment the changelog, but it can be used for other documents, too.") (define-public python-sshpubkeys (package (name "python-sshpubkeys") - (version "3.1.0") - (home-page "https://github.com/ojarva/python-sshpubkeys") - (source (origin - (method git-fetch) - (uri (git-reference - (url home-page) - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1h4gwmcfn84kkqh83km1vfz8sc5kr2g4gzgzmr8gz704jmqiv7nq")))) - (build-system python-build-system) + (version "3.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ojarva/python-sshpubkeys") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n7bjq8wifdw09mxkfzdkybij0csqjcifyxz8dbxy2iffjv5mqnq")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ; XXX: All tests fail + (native-inputs + (list python-setuptools + python-wheel)) (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") (description "This package provides a library for parsing and validating OpenSSH |
