summaryrefslogtreecommitdiffstats
path: root/pkgs/development
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-12-01 17:55:44 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-12-20 20:11:13 +0100
commit7737ca94b8faf850874c5ae232da4d716e52608c (patch)
treeddae49f24c913b9caea26d751cffb2782b48821e /pkgs/development
parent23aee6701a2c70f080b01b659fcc833692ff3ff6 (diff)
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.
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/pytest-trio/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pytest-trio/default.nix b/pkgs/development/python-modules/pytest-trio/default.nix
index 243ea9781f3e..291b10f9b1b8 100644
--- a/pkgs/development/python-modules/pytest-trio/default.nix
+++ b/pkgs/development/python-modules/pytest-trio/default.nix
@@ -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
];