Unverified Commit 4c7a5f99 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

home-assistant: 2025.4.1 -> 2025.4.2 (#398160)

parents dc4b03a2 4887beb0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@

buildPythonPackage rec {
  pname = "aioairzone";
  version = "0.9.9";
  version = "1.0.0";
  pyproject = true;

  disabled = pythonOlder "3.11";
@@ -18,7 +18,7 @@ buildPythonPackage rec {
    owner = "Noltari";
    repo = "aioairzone";
    tag = version;
    hash = "sha256-K/QzoN08keaD5+o5HrKOwrNfIugg1GONdwT7RycOM18=";
    hash = "sha256-/ZzswdGGA4IGc7djTuSIzLtBLA9oRhJBQHMBUlPci7o=";
  };

  build-system = [ setuptools ];
+2 −2
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@

buildPythonPackage rec {
  pname = "aioesphomeapi";
  version = "29.8.0";
  version = "29.9.0";
  pyproject = true;

  disabled = pythonOlder "3.9";
@@ -35,7 +35,7 @@ buildPythonPackage rec {
    owner = "esphome";
    repo = "aioesphomeapi";
    tag = "v${version}";
    hash = "sha256-hX0OOgLnaZOreBfb8ptNkNLzUn+S38/84DfJD423RAM=";
    hash = "sha256-Wk2WxyyU8SUsBu99sj1LNNzQYspC3eLy1tPXSjk2UxQ=";
  };

  build-system = [
+2 −2
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@

buildPythonPackage rec {
  pname = "aioshelly";
  version = "13.4.0";
  version = "13.4.1";
  pyproject = true;

  disabled = pythonOlder "3.11";
@@ -25,7 +25,7 @@ buildPythonPackage rec {
    owner = "home-assistant-libs";
    repo = "aioshelly";
    tag = version;
    hash = "sha256-sGcI8+y/l8meYmlerWC2cEhW+LMKnZpoCw4ZWG26c6g=";
    hash = "sha256-1QefCtEjbcvH+VIIoTBbyuMbkPj7z5YtYROFpj2VtH0=";
  };

  build-system = [ setuptools ];
+10 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
  aiohttp,
  buildPythonPackage,
  fetchFromGitHub,
  fetchpatch,
  freezegun,
  ical,
  pydantic,
@@ -27,6 +28,15 @@ buildPythonPackage rec {
    hash = "sha256-8VUXW6tIX43TV7UIxeforZIxAUqGY9uqpz6WGyH4d8E=";
  };

  patches = [
    (fetchpatch {
      name = "ical-v9-compat.patch";
      url = "https://github.com/allenporter/gcal_sync/commit/7ce4b4214568764c234bff179cf05f7e03e21c1b.patch";
      hash = "sha256-OKFOl1uSCFECbZJe5/J+9oD3fpX/sRM1zPgJ+fmBqPg=";
      excludes = [ "requirements_dev.txt" ];
    })
  ];

  build-system = [ setuptools ];

  dependencies = [
+2 −2
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@

buildPythonPackage rec {
  pname = "ical";
  version = "9.0.3";
  version = "9.1.0";
  pyproject = true;

  disabled = pythonOlder "3.11";
@@ -26,7 +26,7 @@ buildPythonPackage rec {
    owner = "allenporter";
    repo = "ical";
    tag = version;
    hash = "sha256-f2MGG+E6YxziEK4eGoyPBfp/HVVF7qV3yU8N2uw4Lnc=";
    hash = "sha256-E5CIvjWi18E8PYuOsXhsQempa2pPw1frSWK+/R3UqmQ=";
  };

  build-system = [ setuptools ];
Loading