Merge pull request #231304 from natsukium/python3Packages.websockify/fix-darwin

python3Packages.websockify: disabled a broken test on darwin

authored by

Martin Weinelt and committed by
GitHub
d514ad51 53875c54

+7
+7
pkgs/development/python-modules/websockify/default.nix
··· 1 1 { lib 2 + , stdenv 2 3 , buildPythonPackage 3 4 , fetchFromGitHub 4 5 , jwcrypto ··· 34 35 35 36 nativeCheckInputs = [ 36 37 pytestCheckHook 38 + ]; 39 + 40 + disabledTests = lib.optionals stdenv.isDarwin [ 41 + # this test failed on macos 42 + # https://github.com/novnc/websockify/issues/552 43 + "test_socket_set_keepalive_options" 37 44 ]; 38 45 39 46 pythonImportsCheck = [