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:
@@ -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
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user