Commit dbbbfa54 authored by Robert Schütz's avatar Robert Schütz
Browse files

python314Packages.trio-asyncio: disable

It fails to be imported with

    AttributeError: module 'asyncio.events' has no attribute 'BaseDefaultEventLoopPolicy'
parent 49f7ce49
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@
  exceptiongroup,
  pytest-trio,
  pytestCheckHook,
  pythonAtLeast,
  pythonOlder,
}:

@@ -18,7 +19,8 @@ buildPythonPackage rec {
  version = "0.15.0";
  pyproject = true;

  disabled = pythonOlder "3.8";
  # https://github.com/python-trio/trio-asyncio/issues/160
  disabled = pythonAtLeast "3.14";

  src = fetchFromGitHub {
    owner = "python-trio";