mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
gnu: Add python-sshpubkeys.
* gnu/packages/python-xyz.scm (python-sshpubkeys): New public variable.
This commit is contained in:
parent
65579957d5
commit
9d3449f77a
1 changed files with 24 additions and 0 deletions
|
@ -3923,6 +3923,30 @@ (define-public python-rst.linker
|
|||
(define-public python2-rst.linker
|
||||
(package-with-python2 python-rst.linker))
|
||||
|
||||
(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)
|
||||
(propagated-inputs
|
||||
`(("python-cryptography" ,python-cryptography)
|
||||
("python-ecdsa" ,python-ecdsa)))
|
||||
(synopsis "OpenSSH public key parser")
|
||||
(description
|
||||
"This package provides a library for parsing and validating OpenSSH
|
||||
public key files.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-feedgenerator
|
||||
(package
|
||||
(name "python-feedgenerator")
|
||||
|
|
Loading…
Reference in a new issue