about summary refs log tree commit diff
path: root/pkgs/development/python-modules/zha-quirks
diff options
context:
space:
mode:
author06kellyjac <dev@j-k.io>2021-01-09 11:08:23 +0000
committer06kellyjac <dev@j-k.io>2021-01-09 11:08:23 +0000
commit7389fd597a62b2db6be8b33122a827b14e354f1e (patch)
tree379f7bc0b596a90e32bdb47265ab048172af37b3 /pkgs/development/python-modules/zha-quirks
parent04065a73547d3c93a25225531ee1e9d9642ff761 (diff)
python3Packages.zha-quirks: remove conftest as a checkInput
The policy testing tool conftest isn't used in any of the pytest tests.
Diffstat (limited to 'pkgs/development/python-modules/zha-quirks')
-rw-r--r--pkgs/development/python-modules/zha-quirks/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/zha-quirks/default.nix b/pkgs/development/python-modules/zha-quirks/default.nix
index 752d2eeda8d61..2f3500516cb9e 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";