Skip to content
Snippets Groups Projects
Commit 429fdea1 authored by Eric Dvorsak's avatar Eric Dvorsak Committed by Alex Kost
Browse files

gnu: Add python-paramiko.


* gnu/packages/python.scm (python-paramiko, python2-paramiko): New variables.

Signed-off-by: default avatarAlex Kost <alezost@gmail.com>
parent de73dbf6
No related branches found
No related tags found
No related merge requests found
...@@ -298,6 +298,38 @@ (define-public python-psutil ...@@ -298,6 +298,38 @@ (define-public python-psutil
(define-public python2-psutil (define-public python2-psutil
(package-with-python2 python-psutil)) (package-with-python2 python-psutil))
(define-public python-paramiko
(package
(name "python-paramiko")
(version "1.15.2")
(source
(origin
(method url-fetch)
(uri (string-append
"https://pypi.python.org/packages/source/p/paramiko/paramiko-"
version
".tar.gz"))
(sha256
(base32
"0mbfzm9zlrz6mla9xakrm8wkll3x035f9rj3c5pbgjzfldqscmjg"))))
(build-system python-build-system)
(native-inputs
`(("python-setuptools" ,python-setuptools)))
(inputs
`(("python-ecdsa" ,python-ecdsa)
("python-pycrypto" ,python-pycrypto)))
(home-page "http://www.paramiko.org/")
(synopsis "SSHv2 protocol library")
(description "Paramiko is a python implementation of the SSHv2 protocol,
providing both client and server functionality. While it leverages a Python C
extension for low level cryptography (PyCrypto), Paramiko itself is a pure
Python interface around SSH networking concepts.")
(license lgpl2.1+)))
(define-public python2-paramiko
(package-with-python2 python-paramiko))
(define-public python-httplib2 (define-public python-httplib2
(package (package
(name "python-httplib2") (name "python-httplib2")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment