Unverified Commit 45e2cc69 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

home-assistant-custom-components.homematicip_local: 1.89.1 -> 1.90.0 (#458504)

parents acfbfed1 6b21cd23
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
{
  aiohomematic,
  buildPythonPackage,
  setuptools,
}:

buildPythonPackage rec {
  pname = "aiohomematic-test-support";
  inherit (aiohomematic) version src;
  pyproject = true;

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail 'dynamic = ["version"]' 'version = "${version}"'
  '';

  sourceRoot = "${src.name}/aiohomematic_test_support";

  build-system = [ setuptools ];

  pythonImportsCheck = [ "aiohomematic_test_support" ];

  meta = {
    description = "Support-only package for AioHomematic (tests/dev)";
    homepage = "https://github.com/SukramJ/aiohomematic/tree/devel/aiohomematic_test_support";
    inherit (aiohomematic.meta) license maintainers;
  };
}
+2 −12
Original line number Diff line number Diff line
@@ -16,21 +16,16 @@

buildPythonPackage rec {
  pname = "aiohomematic";
  version = "2025.10.5";
  version = "2025.11.5";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "SukramJ";
    repo = "aiohomematic";
    tag = version;
    hash = "sha256-DgLeshxPo2ZwQXe8pSg81kFLviEWKakOY8DtdQH/H58=";
    hash = "sha256-bqhuh+9rcqKreZCc3WJPFR1i3Y8mjtLER/bLlbMp6xc=";
  };

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail "setuptools==80.9.0" "setuptools"
  '';

  build-system = [ setuptools ];

  dependencies = [
@@ -50,11 +45,6 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "aiohomematic" ];

  disabledTests = [
    # AssertionError: assert 548 == 555
    "test_central_full"
  ];

  meta = {
    description = "Module to interact with HomeMatic devices";
    homepage = "https://github.com/SukramJ/aiohomematic";
+18 −2
Original line number Diff line number Diff line
{
  lib,
  async-upnp-client,
  buildHomeAssistantComponent,
  fetchFromGitHub,
  aiohomematic,
  aiohomematic-test-support,
  home-assistant,
  pytest-homeassistant-custom-component,
  pytestCheckHook,
}:

buildHomeAssistantComponent rec {
  owner = "SukramJ";
  domain = "homematicip_local";
  version = "1.89.1";
  version = "1.90.0";

  src = fetchFromGitHub {
    owner = "SukramJ";
    repo = "custom_homematic";
    tag = version;
    hash = "sha256-40t64RAJy/isLfcP71pKiqh3cFXy/s1Mv35NosPnh48=";
    hash = "sha256-tdOxZWofsb2loN1ItQNeEwjIR4divLidyiyAgze6hqw=";
  };

  postPatch = ''
@@ -29,6 +33,18 @@ buildHomeAssistantComponent rec {
    aiohomematic
  ];

  nativeCheckInputs = [
    aiohomematic-test-support
    async-upnp-client
    pytest-homeassistant-custom-component
    pytestCheckHook
  ];

  disabledTests = [
    # custom_components.homematicip_local.support.InvalidConfig: C
    "test_async_validate_config_and_get_system_information"
  ];

  meta = {
    changelog = "https://github.com/SukramJ/custom_homematic/blob/${src.tag}/changelog.md";
    description = "Custom Home Assistant Component for HomeMatic";
+2 −0
Original line number Diff line number Diff line
@@ -296,6 +296,8 @@ self: super: with self; {
  aiohomematic = callPackage ../development/python-modules/aiohomematic { };
  aiohomematic-test-support = callPackage ../development/python-modules/aiohomematic-test-support { };
  aiohttp = callPackage ../development/python-modules/aiohttp { };
  aiohttp-apispec = callPackage ../development/python-modules/aiohttp-apispec { };