[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/08: gnu: Add python-paramiko.
From: |
Alex Kost |
Subject: |
05/08: gnu: Add python-paramiko. |
Date: |
Fri, 31 Jul 2015 08:05:39 +0000 |
alezost pushed a commit to branch master
in repository guix.
commit 429fdea1abbdf4884acb4441da458f65fc08e9df
Author: Eric Dvorsak <address@hidden>
Date: Sat Jul 25 21:38:04 2015 +0200
gnu: Add python-paramiko.
* gnu/packages/python.scm (python-paramiko, python2-paramiko): New
variables.
Signed-off-by: Alex Kost <address@hidden>
---
gnu/packages/python.scm | 32 ++++++++++++++++++++++++++++++++
1 files changed, 32 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index ab89fd0..3ee46f3 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -298,6 +298,38 @@ pidof, tty, taskset, pmap.")
(define-public python2-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
(package
(name "python-httplib2")
- branch master updated (99e29da -> 9589c68), Alex Kost, 2015/07/31
- 01/08: gnu: Add python2-pycrypto., Alex Kost, 2015/07/31
- 02/08: gnu: Add python-ccm., Alex Kost, 2015/07/31
- 05/08: gnu: Add python-paramiko.,
Alex Kost <=
- 03/08: gnu: Add python-ecdsa., Alex Kost, 2015/07/31
- 04/08: gnu: Add python-httplib2., Alex Kost, 2015/07/31
- 06/08: gnu: Add python-py-bcrypt., Alex Kost, 2015/07/31
- 07/08: gnu: Add python-passlib., Alex Kost, 2015/07/31
- 08/08: gnu: Add python2-ansible., Alex Kost, 2015/07/31