From 207ffd8ce2eeefc4827095adfc0e4febc009d47d Mon Sep 17 00:00:00 2001 From: Graham Bennett Date: Mon, 10 May 2021 23:31:34 +0100 Subject: [PATCH] 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 --- pkgs/development/python-modules/python-engineio/3.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/python-engineio/3.nix b/pkgs/development/python-modules/python-engineio/3.nix index e4c71782f99..5deeec0bb57 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 }; }