From c4fd2ab9e61b75b7abe811c5232b28e0c7848734 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 4 Mar 2025 09:14:12 +0100 Subject: [PATCH] python313Packages.zamg: add missing input --- pkgs/development/python-modules/zamg/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/zamg/default.nix b/pkgs/development/python-modules/zamg/default.nix index f69c27f8f072..5ddb4f8606fc 100644 --- a/pkgs/development/python-modules/zamg/default.nix +++ b/pkgs/development/python-modules/zamg/default.nix @@ -2,6 +2,7 @@ lib, aiohttp, aresponses, + async-timeout, buildPythonPackage, fetchFromGitHub, poetry-core, @@ -25,9 +26,14 @@ buildPythonPackage rec { hash = "sha256-j864+3c0GDDftdLqLDD0hizT54c0IgTjT77jOneXlq0="; }; + pythonRelaxDeps = [ "async-timeout" ]; + build-system = [ poetry-core ]; - dependencies = [ aiohttp ]; + dependencies = [ + aiohttp + async-timeout + ]; nativeCheckInputs = [ aresponses