about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2014-12-19 10:59:56 +0100
committerDomen Kožar <domen@dev.si>2014-12-19 10:59:56 +0100
commit71316f7c4295dd1e5522f4b819fe821bf563567c (patch)
treec34fa121a3191394f61271eea266f78cae041110 /pkgs/top-level
parent0cd639ebf8cf7e7e06c65beae7d4d54c674290c5 (diff)
parent4ac75c3f79d007bf524dcda2a376a46bb2d9d531 (diff)
downloadnixlib-71316f7c4295dd1e5522f4b819fe821bf563567c.tar
nixlib-71316f7c4295dd1e5522f4b819fe821bf563567c.tar.gz
nixlib-71316f7c4295dd1e5522f4b819fe821bf563567c.tar.bz2
nixlib-71316f7c4295dd1e5522f4b819fe821bf563567c.tar.lz
nixlib-71316f7c4295dd1e5522f4b819fe821bf563567c.tar.xz
nixlib-71316f7c4295dd1e5522f4b819fe821bf563567c.tar.zst
nixlib-71316f7c4295dd1e5522f4b819fe821bf563567c.zip
Merge pull request #5273 from berdario/master
Skip nonreproducible Util test in paramiko
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/python-packages.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 9338a6e13e43..f77b5065b63d 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -6404,6 +6404,9 @@ let
     # https://github.com/paramiko/paramiko/issues/449
     doCheck = !(isPyPy || isPy33);
     checkPhase = ''
+      # test_util needs to resolve an hostname, thus failing when the fw blocks it
+      sed '/UtilTest/d' -i test.py
+
       ${python}/bin/${python.executable} test.py --no-sftp --no-big-file
     '';