Merge pull request #193254 from fmoda3/fix-debugpy-m1

python3Packages.debugpy: fix thread crashes in tests on aarch64-darwin

authored by Kira Bruneau and committed by GitHub 9a97e910 9f2bd66f

+9
+9
pkgs/development/python-modules/debugpy/default.nix
··· 80 requests 81 ]; 82 83 # Override default arguments in pytest.ini 84 pytestFlagsArray = [ 85 "--timeout=0"
··· 80 requests 81 ]; 82 83 + preCheck = lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) '' 84 + # https://github.com/python/cpython/issues/74570#issuecomment-1093748531 85 + export no_proxy='*'; 86 + ''; 87 + 88 + postCheck = lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) '' 89 + unset no_proxy 90 + ''; 91 + 92 # Override default arguments in pytest.ini 93 pytestFlagsArray = [ 94 "--timeout=0"