python/paramiko: Update to version 1.15.1.

The SFTP-tests fail in conjunction with UTF8 directories, so let's skip
them for now. We also need to disable big file tests, because they rely
on SFTP as well and simply fail if the normal SFTP tests were skipped.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig
2014-10-14 15:18:44 +02:00
parent f35e473d55
commit 958193aeb4
+5 -6
View File
@@ -5779,19 +5779,18 @@ let
};
paramiko = buildPythonPackage rec {
name = "paramiko-1.14.0";
name = "paramiko-1.15.1";
src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/p/paramiko/${name}.tar.gz";
md5 = "e26324fd398af68ad506fe98853835c3";
md5 = "48c274c3f9b1282932567b21f6acf3b5";
};
propagatedBuildInputs = with self; [ pycrypto ecdsa ];
# tests failures since 1.14.0 release..
doCheck = false;
checkPhase = "${python}/bin/${python.executable} test.py";
checkPhase = ''
${python}/bin/${python.executable} test.py --no-sftp --no-big-file
'';
meta = {
homepage = "https://github.com/paramiko/paramiko/";