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.
This commit is contained in:
Martin Weinelt
2023-12-20 20:11:13 +01:00
parent 23aee6701a
commit 7737ca94b8
@@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
, trio, async-generator, hypothesis, outcome, pytest }:
, trio, hypothesis, outcome, pytest }:
buildPythonPackage rec {
pname = "pytest-trio";
@@ -18,7 +18,6 @@ buildPythonPackage rec {
propagatedBuildInputs = [
trio
async-generator
outcome
];