From 7389fd597a62b2db6be8b33122a827b14e354f1e Mon Sep 17 00:00:00 2001 From: 06kellyjac Date: Sat, 9 Jan 2021 11:08:23 +0000 Subject: [PATCH] python3Packages.zha-quirks: remove conftest as a checkInput The policy testing tool conftest isn't used in any of the pytest tests. --- pkgs/development/python-modules/zha-quirks/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/zha-quirks/default.nix b/pkgs/development/python-modules/zha-quirks/default.nix index 752d2eeda8d6..2f3500516cb9 100644 --- a/pkgs/development/python-modules/zha-quirks/default.nix +++ b/pkgs/development/python-modules/zha-quirks/default.nix @@ -3,7 +3,6 @@ , fetchFromGitHub , aiohttp , zigpy -, conftest , asynctest , pytestCheckHook }: @@ -20,7 +19,7 @@ buildPythonPackage rec { }; propagatedBuildInputs = [ aiohttp zigpy ]; - checkInputs = [ pytestCheckHook conftest asynctest ]; + checkInputs = [ pytestCheckHook asynctest ]; meta = with lib; { description = "ZHA Device Handlers are custom quirks implementations for Zigpy";