python3Packages.zha-quirks: 0.0.45 -> 0.0.46

Also unbreak the tests
This commit is contained in:
freezeboy 2020-11-19 00:45:01 +01:00 committed by Jonathan Ringer
parent cfba07ba04
commit a4a1d546ae

View file

@ -1,20 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi { lib, buildPythonPackage, fetchPypi
, aiohttp, zigpy , aiohttp, zigpy, conftest, asynctest
, pytest }: , pytestCheckHook }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "zha-quirks"; pname = "zha-quirks";
version = "0.0.45"; version = "0.0.46";
nativeBuildInputs = [ pytest ]; propagatedBuildInputs = [ aiohttp zigpy ];
buildInputs = [ aiohttp zigpy ]; checkInputs = [ pytestCheckHook conftest asynctest ];
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "9f0640d2844939118c631d88df18d78adfa17d01cac3e04d7156e5f99e41bc7d"; sha256 = "OpkOMvxiPBCVagSv8Jxvth3gwVv4idFSlKoBaOO5JVg=";
}; };
meta = with stdenv.lib; { meta = with lib; {
description = "ZHA Device Handlers are custom quirks implementations for Zigpy"; description = "ZHA Device Handlers are custom quirks implementations for Zigpy";
homepage = "https://github.com/dmulcahey/zha-device-handlers"; homepage = "https://github.com/dmulcahey/zha-device-handlers";
license = licenses.asl20; license = licenses.asl20;