pythonPackages.paramiko: 1.15.1 -> 2.0.2

This commit is contained in:
Lancelot SIX 2016-08-09 17:32:28 +02:00
parent 909eaf8a4f
commit 5d7777a288
No known key found for this signature in database
GPG Key ID: 02E1542BA66FB047
1 changed files with 4 additions and 3 deletions

View File

@ -16524,14 +16524,15 @@ in modules // {
};
paramiko = buildPythonPackage rec {
name = "paramiko-1.15.1";
name = "paramiko-${version}";
version = "2.0.2";
src = pkgs.fetchurl {
url = "mirror://pypi/p/paramiko/${name}.tar.gz";
sha256 = "6ed97e2281bb48728692cdc621f6b86a65fdc1d46b178ce250cfec10b977a04c";
sha256 = "1p21s7psqj18k9a97nq26yas058i5ivzk7pi7y98l1rbl87zj6s1";
};
propagatedBuildInputs = with self; [ pycrypto ecdsa ];
propagatedBuildInputs = with self; [ cryptography cryptography_vectors ];
# https://github.com/paramiko/paramiko/issues/449
doCheck = !(isPyPy || isPy33);