From 557e932a6408f5dfcaf803cc498237cbead9aae1 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 17 Sep 2022 00:39:44 +0200 Subject: [PATCH] python3Packages.atenpdu: propagate async-timeout --- pkgs/development/python-modules/atenpdu/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/atenpdu/default.nix b/pkgs/development/python-modules/atenpdu/default.nix index d2f4cc0af8ce..e14b68c35507 100644 --- a/pkgs/development/python-modules/atenpdu/default.nix +++ b/pkgs/development/python-modules/atenpdu/default.nix @@ -1,6 +1,7 @@ { lib , buildPythonPackage , fetchPypi +, async-timeout , pysnmp }: @@ -13,7 +14,10 @@ buildPythonPackage rec { sha256 = "sha256-vvq8InmJUgvm/PpvZutpsBR3Fj1gR+xrkgfEGlw04Ek="; }; - propagatedBuildInputs = [ pysnmp ]; + propagatedBuildInputs = [ + async-timeout + pysnmp + ]; # Project has no test doCheck = false;