diff options
| author | Graham Bennett <graham@grahambennett.org> | 2021-05-10 23:31:34 +0100 |
|---|---|---|
| committer | Graham Bennett <graham@grahambennett.org> | 2021-05-13 22:09:27 +0100 |
| commit | 207ffd8ce2eeefc4827095adfc0e4febc009d47d (patch) | |
| tree | 91f07968e8ff874eb80f14ebead4180be3dafd60 /pkgs/development/python-modules/python-engineio | |
| parent | bfd4c121ffac698e4255c928c97044418024bc6f (diff) | |
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>
Diffstat (limited to 'pkgs/development/python-modules/python-engineio')
| -rw-r--r-- | pkgs/development/python-modules/python-engineio/3.nix | 2 |
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 }; } |
