From c4af83ca96d30a21df15ba793479eb7a2c9fa96e Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Sun, 9 Jul 2023 15:48:00 -0700 Subject: [PATCH] bashate: add missing testtools dependency --- pkgs/development/tools/bashate/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/tools/bashate/default.nix b/pkgs/development/tools/bashate/default.nix index 31714db5c893..f46e9667cbef 100644 --- a/pkgs/development/tools/bashate/default.nix +++ b/pkgs/development/tools/bashate/default.nix @@ -8,6 +8,7 @@ , pytestCheckHook , pythonOlder , setuptools +, testtools }: buildPythonApplication rec { @@ -30,6 +31,7 @@ buildPythonApplication rec { fixtures mock pytestCheckHook + testtools ]; pythonImportsCheck = [ "bashate" ];