summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-engineio
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/python-engineio')
-rw-r--r--pkgs/development/python-modules/python-engineio/3.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-engineio/3.nix b/pkgs/development/python-modules/python-engineio/3.nix
index e4c71782f990..5deeec0bb573 100644
--- a/pkgs/development/python-modules/python-engineio/3.nix
+++ b/pkgs/development/python-modules/python-engineio/3.nix
@@ -13,6 +13,7 @@
, websocket_client
, websockets
, pytestCheckHook
+, pythonAtLeast
}:
buildPythonPackage rec {
@@ -63,5 +64,6 @@ buildPythonPackage rec {
homepage = "https://github.com/miguelgrinberg/python-engineio/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ graham33 ];
+ broken = stdenv.isDarwin && (pythonAtLeast "3.9"); # See https://github.com/miguelgrinberg/python-socketio/issues/567
};
}