Merge #122500: python-engineio: 3.x on python 3.9 Darwin broken

This commit is contained in:
Vladimír Čunát 2021-05-16 10:51:45 +02:00
commit b0d25971a0
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -13,6 +13,7 @@
, websocket_client , websocket_client
, websockets , websockets
, pytestCheckHook , pytestCheckHook
, pythonAtLeast
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -63,5 +64,6 @@ buildPythonPackage rec {
homepage = "https://github.com/miguelgrinberg/python-engineio/"; homepage = "https://github.com/miguelgrinberg/python-engineio/";
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = with maintainers; [ graham33 ]; maintainers = with maintainers; [ graham33 ];
broken = stdenv.isDarwin && (pythonAtLeast "3.9"); # See https://github.com/miguelgrinberg/python-socketio/issues/567
}; };
} }