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

home-assistant: 2025.4.2 -> 2025.4.3 (#400270)

parents 5a1c1c21 12a35c2c
Loading
Loading
Loading
Loading
+3 −9
Original line number Diff line number Diff line
@@ -5,8 +5,6 @@
  click,
  click-log,
  fetchFromGitHub,
  pure-pcapy3,
  pyserial-asyncio,
  pytest-asyncio,
  pytest-timeout,
  pytestCheckHook,
@@ -18,16 +16,14 @@

buildPythonPackage rec {
  pname = "bellows";
  version = "0.44.0";
  version = "0.44.1";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "zigpy";
    repo = "bellows";
    tag = version;
    hash = "sha256-9CuZGorTqay09ZHrUDoorYew8vvDV6pyxMuik7/QKJ4=";
    hash = "sha256-LxwKS4jh/ehYGxhU4lpmzXBWGacLtjq6c/lhBybLaRE=";
  };

  postPatch = ''
@@ -41,8 +37,6 @@ buildPythonPackage rec {
  dependencies = [
    click
    click-log
    pure-pcapy3
    pyserial-asyncio
    voluptuous
    zigpy
  ] ++ lib.optionals (pythonOlder "3.11") [ async-timeout ];
@@ -58,7 +52,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python module to implement EZSP for EmberZNet devices";
    homepage = "https://github.com/zigpy/bellows";
    changelog = "https://github.com/zigpy/bellows/releases/tag/${version}";
    changelog = "https://github.com/zigpy/bellows/releases/tag/${src.tag}";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ mvnetbiz ];
    mainProgram = "bellows";
+8 −2
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
  aiohttp,
  buildPythonPackage,
  fetchFromGitHub,
  freezegun,
  geopy,
  imageio,
  lxml,
@@ -13,6 +14,7 @@
  python-dateutil,
  pythonOlder,
  setuptools,
  syrupy,
  voluptuous,
}:

@@ -27,7 +29,7 @@ buildPythonPackage rec {
    owner = "michaeldavie";
    repo = "env_canada";
    tag = version;
    hash = "sha256-4PztYdQmMH2n3dlV8arJ2UFGp08nkIK80L460UdNhV8=";
    hash = "sha256-YDosRPROWpjG27MyCErCTvP99mAlzg/GfmU73cBVUTo=";
  };

  build-system = [ setuptools ];
@@ -44,7 +46,11 @@ buildPythonPackage rec {
    voluptuous
  ];

  nativeCheckInputs = [ pytestCheckHook ];
  nativeCheckInputs = [
    freezegun
    pytestCheckHook
    syrupy
  ];

  disabledTests = [
    # Tests require network access
+2 −2
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@

buildPythonPackage rec {
  pname = "zha";
  version = "0.0.55";
  version = "0.0.56";
  pyproject = true;

  disabled = pythonOlder "3.12";
@@ -36,7 +36,7 @@ buildPythonPackage rec {
    owner = "zigpy";
    repo = "zha";
    tag = version;
    hash = "sha256-LiHJk7xVdIqNl6BTfwlch3jqQm/MvbrKSExhOR5KD0c=";
    hash = "sha256-k6Zegn7YUw5Wueb/8Z1RJ7teRMQ6Owdm8obM6XHI/aY=";
  };

  postPatch = ''
+14 −22
Original line number Diff line number Diff line
@@ -12,9 +12,7 @@
  fetchFromGitHub,
  freezegun,
  frozendict,
  importlib-resources,
  jsonschema,
  pycryptodome,
  pyserial-asyncio,
  pytest-asyncio,
  pytest-timeout,
@@ -27,16 +25,14 @@

buildPythonPackage rec {
  pname = "zigpy";
  version = "0.78.0";
  version = "0.78.1";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "zigpy";
    repo = "zigpy";
    tag = version;
    hash = "sha256-7ckpg1ukuASWtTdQn/P0KfXaMo5l2NyB9alCXeTarEU=";
    hash = "sha256-b+4KqcswAKUNJb4e450VwmAR0mca9ApW4n+kif7BR7o=";
  };

  postPatch = ''
@@ -47,8 +43,7 @@ buildPythonPackage rec {

  build-system = [ setuptools ];

  dependencies =
    [
  dependencies = [
    attrs
    aiohttp
    aiosqlite
@@ -58,11 +53,8 @@ buildPythonPackage rec {
    jsonschema
    pyserial-asyncio
    typing-extensions
      pycryptodome
    voluptuous
    ]
    ++ lib.optionals (pythonOlder "3.9") [ importlib-resources ]
    ++ lib.optionals (pythonOlder "3.11") [ async-timeout ];
  ] ++ lib.optionals (pythonOlder "3.11") [ async-timeout ];

  nativeCheckInputs = [
    aioresponses
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
# Do not edit!

{
  version = "2025.4.2";
  version = "2025.4.3";
  components = {
    "3_day_blinds" =
      ps: with ps; [
Loading