summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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
'';