Unverified Commit caf622ec authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python312Packages.zha-quirks: 0.0.113 -> 0.0.114
parents 9285ee1f 502eff17
Loading
Loading
Loading
Loading
+14 −17
Original line number Diff line number Diff line
{ 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";