Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python-engineio: 3.x on python 3.9 Darwin broken

The tests are failing, but the package appears to be generally broken for
python 3.9 and above on Darwin.

Co-authored-by: Jonathan Ringer <jonringer@users.noreply.github.com>

+2
+2
pkgs/development/python-modules/python-engineio/3.nix
··· 13 13 , websocket_client 14 14 , websockets 15 15 , pytestCheckHook 16 + , pythonAtLeast 16 17 }: 17 18 18 19 buildPythonPackage rec { ··· 63 64 homepage = "https://github.com/miguelgrinberg/python-engineio/"; 64 65 license = with licenses; [ mit ]; 65 66 maintainers = with maintainers; [ graham33 ]; 67 + broken = stdenv.isDarwin && (pythonAtLeast "3.9"); # See https://github.com/miguelgrinberg/python-socketio/issues/567 66 68 }; 67 69 }