From e1391ef11b6b2b59162cca4498c74f54e60a34d5 Mon Sep 17 00:00:00 2001 From: Martin Joerg Date: Sun, 27 Jul 2025 09:19:48 +0000 Subject: [PATCH] python3Packages.webtest-aiohttp: add aiohttp to dependencies Otherwise, this package fails to build with doCheck = false. --- pkgs/development/python-modules/webtest-aiohttp/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/webtest-aiohttp/default.nix b/pkgs/development/python-modules/webtest-aiohttp/default.nix index 0f915980724c..101a8040cef8 100644 --- a/pkgs/development/python-modules/webtest-aiohttp/default.nix +++ b/pkgs/development/python-modules/webtest-aiohttp/default.nix @@ -38,10 +38,12 @@ buildPythonPackage rec { build-system = [ setuptools ]; - dependencies = [ webtest ]; + dependencies = [ + aiohttp + webtest + ]; nativeCheckInputs = [ - aiohttp pytest-aiohttp pytestCheckHook ];