Merge pull request #302957 from fabaff/zha-quirks-bump

python312Packages.zha-quirks: 0.0.113 -> 0.0.114
This commit is contained in:
Fabian Affolter 2024-04-10 08:43:15 +02:00 committed by GitHub
commit caf622ec8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,17 +1,18 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, setuptools
, zigpy
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
setuptools,
zigpy,
}:
buildPythonPackage rec {
pname = "zha-quirks";
version = "0.0.113";
version = "0.0.114";
pyproject = true;
disabled = pythonOlder "3.12";
@ -20,7 +21,7 @@ buildPythonPackage rec {
owner = "zigpy";
repo = "zha-device-handlers";
rev = "refs/tags/${version}";
hash = "sha256-Th0JF7sauDhFIZH7BY4STgJZ2o+zqQmtUqNLNeaB6As=";
hash = "sha256-FipD4VCz2/FYlf17+q7LTej9ZtT72/R4ELkAQtw7RvE=";
};
postPatch = ''
@ -29,9 +30,7 @@ buildPythonPackage rec {
--replace-fail 'dynamic = ["version"]' 'version = "${version}"'
'';
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
aiohttp
@ -50,9 +49,7 @@ buildPythonPackage rec {
"test_smart_air_sensor"
];
pythonImportsCheck = [
"zhaquirks"
];
pythonImportsCheck = [ "zhaquirks" ];
meta = with lib; {
description = "ZHA Device Handlers are custom quirks implementations for Zigpy";