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