From 1a53c295bfaad2871b339c4253428c0620ea99dc Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 19 Apr 2022 13:04:06 +0200 Subject: [PATCH] python3Packages.webssh: disable failing test --- pkgs/development/python-modules/webssh/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/webssh/default.nix b/pkgs/development/python-modules/webssh/default.nix index 49b7097549d..ff26a9f1711 100644 --- a/pkgs/development/python-modules/webssh/default.nix +++ b/pkgs/development/python-modules/webssh/default.nix @@ -29,6 +29,11 @@ buildPythonPackage rec { "webssh" ]; + disabledTests = [ + # Test fails with AttributeError (possibly related to paramiko update) + "test_app_with_bad_host_key" + ]; + meta = with lib; { description = "Web based SSH client"; homepage = "https://github.com/huashengdun/webssh/";