lol

python312Packages.pytest-trio: drop dependency on async-generator

The `async_generator` module is a backport of async generators to
Python 3.5 and it started failing on 3.12, but pulling it is safe.

+1 -2
+1 -2
pkgs/development/python-modules/pytest-trio/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub, pythonOlder 2 - , trio, async-generator, hypothesis, outcome, pytest }: 2 + , trio, hypothesis, outcome, pytest }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "pytest-trio"; ··· 18 18 19 19 propagatedBuildInputs = [ 20 20 trio 21 - async-generator 22 21 outcome 23 22 ]; 24 23