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

Merge pull request #287480 from NixOS/home-assistant

home-assistant: 2024.1.6 -> 2024.2.1
parents a971794a 19ea0822
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -533,6 +533,7 @@ in {
          "inkbird"
          "improv_ble"
          "keymitt_ble"
          "leaone-ble"
          "led_ble"
          "medcom_ble"
          "melnor"
+8 −3
Original line number Diff line number Diff line
@@ -6,12 +6,13 @@
, pytest-aiohttp
, pytestCheckHook
, pythonOlder
, setuptools
}:

buildPythonPackage rec {
  pname = "aioecowitt";
  version = "2024.2.0";
  format = "setuptools";
  version = "2024.2.1";
  pyproject = true;

  disabled = pythonOlder "3.9";

@@ -19,9 +20,13 @@ buildPythonPackage rec {
    owner = "home-assistant-libs";
    repo = pname;
    rev = "refs/tags/${version}";
    hash = "sha256-vKpzD6m0zG8yAghmoNKcufqoJUYOTxN3w+ix1ObuLpw=";
    hash = "sha256-PBV5jk0oItelCDFZsk8et0raIGEWxOaNdHuAViQ6LZc=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    aiohttp
    meteocalc
+2 −2
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@

buildPythonPackage rec {
  pname = "aioelectricitymaps";
  version = "0.3.0";
  version = "0.4.0";
  pyproject = true;

  disabled = pythonOlder "3.11";
@@ -23,7 +23,7 @@ buildPythonPackage rec {
    owner = "jpbede";
    repo = "aioelectricitymaps";
    rev = "refs/tags/v${version}";
    hash = "sha256-saIzVbgYx5nIM5fk7i3wu4X1gOIj81L/rRNq5Xl4cnw=";
    hash = "sha256-q06B40c0uvSuzH/3YCoxg4p9aNIOPrphsoESktF+B14=";
  };

  postPatch = ''
+2 −2
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@

buildPythonPackage rec {
  pname = "aioesphomeapi";
  version = "21.0.1";
  version = "21.0.2";
  pyproject = true;

  disabled = pythonOlder "3.9";
@@ -32,7 +32,7 @@ buildPythonPackage rec {
    owner = "esphome";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-HPnyFHHx1BahqzvRChT85BaG4eJM3qvTq2Tpbqb3SDI=";
    hash = "sha256-uNVf0wnqVntjTxkNTilvb0v6h3VBCjd91wbLQJ6q71g=";
  };

  nativeBuildInputs = [
+3 −3
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@

buildPythonPackage rec {
  pname = "aiohttp-zlib-ng";
  version = "0.1.3";
  version = "0.3.1";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -19,12 +19,12 @@ buildPythonPackage rec {
    owner = "bdraco";
    repo = "aiohttp-zlib-ng";
    rev = "refs/tags/v${version}";
    hash = "sha256-t7T3KIGId5CoBciSkwu/sejW45i2EYtq1fHvNKNXlhA=";
    hash = "sha256-XA2XSX9KA/oBzOLJrhj78uoy6ufLbVTENYZL3y/+fwU=";
  };

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace " --cov=aiohttp_zlib_ng --cov-report=term-missing:skip-covered" ""
      --replace-fail " --cov=aiohttp_zlib_ng --cov-report=term-missing:skip-covered" ""
  '';

  nativeBuildInputs = [
Loading