python3Packages.twisted: skip failing tests on aarch64-darwin

Seen on hydra for both python3.9 and python3.10 on aarch64-darwin
exclusively.

authored by Martin Weinelt and committed by Martin Weinelt d6d2d6c6 b5e4c148

+3
+3
pkgs/development/python-modules/twisted/default.nix
··· 104 104 # twisted.python.runtime.platform.supportsINotify() == False 105 105 substituteInPlace src/twisted/python/_inotify.py --replace \ 106 106 "ctypes.util.find_library(\"c\")" "'${stdenv.cc.libc}/lib/libc.so.6'" 107 + '' + lib.optionalString (stdenv.isAarch64 && stdenv.isDarwin) '' 108 + echo 'AbortConnectionTests_AsyncioSelectorReactorTests.test_fullWriteBufferAfterByteExchange.skip = "Timeout after 120 seconds"' >> src/twisted/internet/test/test_tcp.py 109 + echo 'AbortConnectionTests_AsyncioSelectorReactorTests.test_resumeProducingAbort.skip = "Timeout after 120 seconds"' >> src/twisted/internet/test/test_tcp.py 107 110 ''; 108 111 109 112 # Generate Twisted's plug-in cache. Twisted users must do it as well. See