~ruther/guix-local

14bbe08750ea84b7d0ffd168cfcf6e08a0838ab0 — Sharlatan Hellseher a year ago c0095af
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
1 files changed, 19 insertions(+), 13 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +19 -13
@@ 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