lol

Merge pull request #298109 from NixOS/home-assistant

home-assistant: 2024.3.1 -> 2024.3.2

authored by

Martin Weinelt and committed by
GitHub
8a42eb94 93ff3ab2

+21 -19
+2 -2
pkgs/development/python-modules/aiodhcpwatcher/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "aiodhcpwatcher"; 18 - version = "0.8.1"; 19 pyproject = true; 20 21 src = fetchFromGitHub { 22 owner = "bdraco"; 23 repo = "aiodhcpwatcher"; 24 rev = "v${version}"; 25 - hash = "sha256-t0roU91WblymcY69ieRq9zjlCq+gdJ0eDCkIoNQNjsc="; 26 }; 27 28 postPatch = ''
··· 15 16 buildPythonPackage rec { 17 pname = "aiodhcpwatcher"; 18 + version = "0.8.2"; 19 pyproject = true; 20 21 src = fetchFromGitHub { 22 owner = "bdraco"; 23 repo = "aiodhcpwatcher"; 24 rev = "v${version}"; 25 + hash = "sha256-yvmCp8luR26yFYun/YY/tt+peaAL4nOR9cC6lpMiJhk="; 26 }; 27 28 postPatch = ''
+3 -3
pkgs/development/python-modules/hass-nabucasa/default.nix
··· 22 23 buildPythonPackage rec { 24 pname = "hass-nabucasa"; 25 - version = "0.78.0-unstable-2024-03-09"; 26 pyproject = true; 27 28 disabled = pythonOlder "3.11"; ··· 30 src = fetchFromGitHub { 31 owner = "nabucasa"; 32 repo = "hass-nabucasa"; 33 - rev = "f4c189fa388aa7a76ebd0d88e73f7e9421088d8f"; 34 - hash = "sha256-UU/vsHclA8UeciC3YiPG9M/dXu6MnAxO5ElGAo5c6EA="; 35 }; 36 37 nativeBuildInputs = [
··· 22 23 buildPythonPackage rec { 24 pname = "hass-nabucasa"; 25 + version = "0.79.0"; 26 pyproject = true; 27 28 disabled = pythonOlder "3.11"; ··· 30 src = fetchFromGitHub { 31 owner = "nabucasa"; 32 repo = "hass-nabucasa"; 33 + rev = "refs/tags/${version}"; 34 + hash = "sha256-7VhafefF7imvnhdFo6K+18h5kmXvIatKerJ+Qn5zwdQ="; 35 }; 36 37 nativeBuildInputs = [
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2 # Do not edit! 3 4 { 5 - version = "2024.3.1"; 6 components = { 7 "3_day_blinds" = ps: with ps; [ 8 ];
··· 2 # Do not edit! 3 4 { 5 + version = "2024.3.2"; 6 components = { 7 "3_day_blinds" = ps: with ps; [ 8 ];
+15 -13
pkgs/servers/home-assistant/default.nix
··· 39 }; 40 }); 41 42 - aioautomower = super.aioautomower.overridePythonAttrs (oldAttrs: rec { 43 - version = "2024.2.10"; 44 - src = fetchFromGitHub { 45 - owner = "Thomas55555"; 46 - repo = "aioautomower"; 47 - rev = "refs/tags/${version}"; 48 - hash = "sha256-NRcLyuU5FFIKJALUrx5iVSihzgO6ljqaqlhbs+y2E4Q="; 49 - }; 50 - }); 51 - 52 aioelectricitymaps = super.aioelectricitymaps.overridePythonAttrs (oldAttrs: rec { 53 version = "0.4.0"; 54 src = fetchFromGitHub { ··· 156 debugpy = super.debugpy.overridePythonAttrs (oldAttrs: { 157 # tests are deadlocking too often 158 # https://github.com/NixOS/nixpkgs/issues/262000 159 doCheck = false; 160 }); 161 ··· 536 extraBuildInputs = extraPackages python.pkgs; 537 538 # Don't forget to run parse-requirements.py after updating 539 - hassVersion = "2024.3.1"; 540 541 in python.pkgs.buildPythonApplication rec { 542 pname = "homeassistant"; ··· 554 owner = "home-assistant"; 555 repo = "core"; 556 rev = "refs/tags/${version}"; 557 - hash = "sha256-cvzoia2zzqXSDnPQdevfs73H4qITPBpEpzpFKM9jRKs="; 558 }; 559 560 # Secondary source is pypi sdist for translations 561 sdist = fetchPypi { 562 inherit pname version; 563 - hash = "sha256-WK2PTTFDnQMwiXAtxjNOo9u5KVXWnqUXqd286hq0VEc="; 564 }; 565 566 nativeBuildInputs = with python.pkgs; [ ··· 573 "bcrypt" 574 "ciso8601" 575 "cryptography" 576 "httpx" 577 "orjson" 578 "pyopenssl"
··· 39 }; 40 }); 41 42 aioelectricitymaps = super.aioelectricitymaps.overridePythonAttrs (oldAttrs: rec { 43 version = "0.4.0"; 44 src = fetchFromGitHub { ··· 146 debugpy = super.debugpy.overridePythonAttrs (oldAttrs: { 147 # tests are deadlocking too often 148 # https://github.com/NixOS/nixpkgs/issues/262000 149 + doCheck = false; 150 + }); 151 + 152 + dsmr-parser = super.dsmr-parser.overridePythonAttrs (oldAttrs: rec { 153 + version = "1.3.1"; 154 + src = fetchFromGitHub { 155 + owner = "ndokter"; 156 + repo = "dsmr_parser"; 157 + rev = "refs/tags/v${version}"; 158 + hash = "sha256-PULrKRHrCuDFZcR+5ha0PjkN438QFgf2CrpYhKIqYTs="; 159 + }; 160 doCheck = false; 161 }); 162 ··· 537 extraBuildInputs = extraPackages python.pkgs; 538 539 # Don't forget to run parse-requirements.py after updating 540 + hassVersion = "2024.3.2"; 541 542 in python.pkgs.buildPythonApplication rec { 543 pname = "homeassistant"; ··· 555 owner = "home-assistant"; 556 repo = "core"; 557 rev = "refs/tags/${version}"; 558 + hash = "sha256-Am7uEmtLVuYqjCfsYIbjUyzvuWo4FY1WNjOh3D2OzLo="; 559 }; 560 561 # Secondary source is pypi sdist for translations 562 sdist = fetchPypi { 563 inherit pname version; 564 + hash = "sha256-OyNh3OPpngrncy3TUlVB3SCQJuS/9pkfNnZgLXaKXrc="; 565 }; 566 567 nativeBuildInputs = with python.pkgs; [ ··· 574 "bcrypt" 575 "ciso8601" 576 "cryptography" 577 + "hass-nabucasa" 578 "httpx" 579 "orjson" 580 "pyopenssl"