Merge pull request #254455 from NixOS/home-assistant

home-assistant: 2023.9.0 -> 2023.9.1

authored by Martin Weinelt and committed by GitHub aca07435 4f3a2bcc

+12 -12
+2 -2
pkgs/development/python-modules/aiovodafone/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "aiovodafone"; 13 - version = "0.0.8"; 14 format = "pyproject"; 15 16 disabled = pythonOlder "3.10"; ··· 19 owner = "chemelli74"; 20 repo = "aiovodafone"; 21 rev = "refs/tags/v${version}"; 22 - hash = "sha256-o21zaK3dJfURFAt8fPaOd95H7tuqLnFPC01RGHBIz4M="; 23 }; 24 25 postPatch = ''
··· 10 11 buildPythonPackage rec { 12 pname = "aiovodafone"; 13 + version = "0.1.0"; 14 format = "pyproject"; 15 16 disabled = pythonOlder "3.10"; ··· 19 owner = "chemelli74"; 20 repo = "aiovodafone"; 21 rev = "refs/tags/v${version}"; 22 + hash = "sha256-VO+lQK+0bSQqnFiLzRMnVTpTJRjv2fZhDbIoTiMFWFI="; 23 }; 24 25 postPatch = ''
+2 -2
pkgs/development/python-modules/bleak-retry-connector/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "bleak-retry-connector"; 16 - version = "3.1.2"; 17 format = "pyproject"; 18 19 disabled = pythonOlder "3.7"; ··· 22 owner = "Bluetooth-Devices"; 23 repo = pname; 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-q+J4PUBm42jBcLbiywWwDZxUI0Gsl8GjnLPwniWp+Kw="; 26 }; 27 28 postPatch = ''
··· 13 14 buildPythonPackage rec { 15 pname = "bleak-retry-connector"; 16 + version = "3.1.3"; 17 format = "pyproject"; 18 19 disabled = pythonOlder "3.7"; ··· 22 owner = "Bluetooth-Devices"; 23 repo = pname; 24 rev = "refs/tags/v${version}"; 25 + hash = "sha256-Nd/9mUtEEhCiJSF677lsE5UhMrbWiIl3ktQ7FjtyYlQ="; 26 }; 27 28 postPatch = ''
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2 # Do not edit! 3 4 { 5 - version = "2023.9.0"; 6 components = { 7 "3_day_blinds" = ps: with ps; [ 8 ];
··· 2 # Do not edit! 3 4 { 5 + version = "2023.9.1"; 6 components = { 7 "3_day_blinds" = ps: with ps; [ 8 ];
+5 -5
pkgs/servers/home-assistant/default.nix
··· 283 }); 284 285 zeroconf = super.zeroconf.overridePythonAttrs (oldAttrs: rec { 286 - version = "0.91.1"; 287 src = fetchFromGitHub { 288 owner = "python-zeroconf"; 289 repo = "python-zeroconf"; 290 rev = "refs/tags/${version}"; 291 - hash = "sha256-HHADcxXjfukRJtqRjfKI/spZIqOfDT0Etg4oYzNdXIs="; 292 }; 293 }); 294 ··· 316 extraBuildInputs = extraPackages python.pkgs; 317 318 # Don't forget to run parse-requirements.py after updating 319 - hassVersion = "2023.9.0"; 320 321 in python.pkgs.buildPythonApplication rec { 322 pname = "homeassistant"; ··· 332 # Primary source is the pypi sdist, because it contains translations 333 src = fetchPypi { 334 inherit pname version; 335 - hash = "sha256-XdZYVv60ZCkK0fKmt2kmThRxhv+hfJMtHwgBu3iaW9w="; 336 }; 337 338 # Secondary source is git for tests ··· 340 owner = "home-assistant"; 341 repo = "core"; 342 rev = "refs/tags/${version}"; 343 - hash = "sha256-B+GdUXRvQyBMR7PbVGEZr7hZm7wslBskUTB23APJLIU="; 344 }; 345 346 nativeBuildInputs = with python.pkgs; [
··· 283 }); 284 285 zeroconf = super.zeroconf.overridePythonAttrs (oldAttrs: rec { 286 + version = "0.98.0"; 287 src = fetchFromGitHub { 288 owner = "python-zeroconf"; 289 repo = "python-zeroconf"; 290 rev = "refs/tags/${version}"; 291 + hash = "sha256-oajSXGQTsJsajRAnS/MkkbSyxTeVvdjvw1eiJaPzZMY="; 292 }; 293 }); 294 ··· 316 extraBuildInputs = extraPackages python.pkgs; 317 318 # Don't forget to run parse-requirements.py after updating 319 + hassVersion = "2023.9.1"; 320 321 in python.pkgs.buildPythonApplication rec { 322 pname = "homeassistant"; ··· 332 # Primary source is the pypi sdist, because it contains translations 333 src = fetchPypi { 334 inherit pname version; 335 + hash = "sha256-uOFCaYpw/UVWdkJ3ixu8cMx9sbDy2WnHPxvPvWN1mkE="; 336 }; 337 338 # Secondary source is git for tests ··· 340 owner = "home-assistant"; 341 repo = "core"; 342 rev = "refs/tags/${version}"; 343 + hash = "sha256-rglLwAlHlwoaF/RxUsKc8+f38D6ztMh2p2fkHLWq9MM="; 344 }; 345 346 nativeBuildInputs = with python.pkgs; [
+2 -2
pkgs/servers/home-assistant/frontend.nix
··· 4 # the frontend version corresponding to a specific home-assistant version can be found here 5 # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json 6 pname = "home-assistant-frontend"; 7 - version = "20230906.1"; 8 format = "wheel"; 9 10 src = fetchPypi { ··· 12 pname = "home_assistant_frontend"; 13 dist = "py3"; 14 python = "py3"; 15 - hash = "sha256-wR/v49K4bKNnzkRltvdFjVYgZ+jU8PVBJHCF765NY5U="; 16 }; 17 18 # there is nothing to strip in this package
··· 4 # the frontend version corresponding to a specific home-assistant version can be found here 5 # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json 6 pname = "home-assistant-frontend"; 7 + version = "20230908.0"; 8 format = "wheel"; 9 10 src = fetchPypi { ··· 12 pname = "home_assistant_frontend"; 13 dist = "py3"; 14 python = "py3"; 15 + hash = "sha256-XZAdS4RjnPmMXYzBmyA4+liH5kdm3U/YqJJGXIaqOGo="; 16 }; 17 18 # there is nothing to strip in this package