paramiko: disable tests on py33

This commit is contained in:
Domen Kožar 2014-11-26 21:22:30 +01:00
parent 7de1691b6d
commit 3ff9a7507a

View File

@ -6203,7 +6203,8 @@ let
propagatedBuildInputs = with self; [ pycrypto ecdsa ];
doCheck = !isPyPy;
# https://github.com/paramiko/paramiko/issues/449
doCheck = !(isPyPy || isPy33);
checkPhase = ''
${python}/bin/${python.executable} test.py --no-sftp --no-big-file
'';