gnu: Add python-scp.

* gnu/packages/python-xyz.scm (python-scp): New variable.
master
Maxim Cournoyer 2019-04-01 22:39:42 -04:00
parent 0f0a5ef9e8
commit 13d825fcb6
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 23 additions and 0 deletions

View File

@ -2649,6 +2649,29 @@ and several other projects.")
software version simply.")
(license license:expat)))
(define-public python-scp
(package
(name "python-scp")
(version "0.13.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "scp" version))
(sha256
(base32
"1crlpw9lnn58fs1c1rmh7s7s9y5gkgpgjsqlvg9qa51kq1knx7gg"))))
(build-system python-build-system)
(arguments
'(#:tests? #f)) ;tests require an SSH server
(propagated-inputs
`(("python-paramiko" ,python-paramiko)))
(home-page "https://github.com/jbardin/scp.py")
(synopsis "SCP protocol module for Python and Paramiko")
(description "The scp module extends the Paramiko library to send and
receive files via the SCP1 protocol, as implemented by the OpenSSH
@command{scp} program.")
(license license:gpl2+)))
(define-public python-rst.linker
(package
(name "python-rst.linker")