Merge pull request #141035 from NixOS/home-assistant

authored by Martin Weinelt and committed by GitHub 13af9289 e71f9d04

+12 -12
+2 -2
pkgs/development/python-modules/async-upnp-client/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "async-upnp-client"; 17 - version = "0.22.5"; 17 + version = "0.22.8"; 18 18 disabled = pythonOlder "3.6"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "StevenLooman"; 22 22 repo = "async_upnp_client"; 23 23 rev = version; 24 - sha256 = "sha256-/GELV94m75jSIFR4Ua3Sr+L9iGmzRQxPMIK2yfDiX9E="; 24 + sha256 = "sha256-0McLH5iNiA6aIyk6OaN57JAs97R+/4M7xaUDmh+xV6c="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/hap-python/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "hap-python"; 19 - version = "4.1.0"; 19 + version = "4.3.0"; 20 20 disabled = pythonOlder "3.6"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "ikalchev"; 24 24 repo = "HAP-python"; 25 25 rev = "v${version}"; 26 - sha256 = "sha256-vUbcsG6mKPgH+IF5i/BYSIkfIizSZzMWz0Kq0yfuKxE="; 26 + sha256 = "sha256-G4KL6iMeVn/tmvFtFL8vyqHGNfqk6j8iG4tDK9VpCyM="; 27 27 }; 28 28 29 29 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/python-didl-lite/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "python-didl-lite"; 11 - version = "1.2.6"; 11 + version = "1.3.0"; 12 12 disabled = pythonOlder "3.5.3"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "StevenLooman"; 16 16 repo = pname; 17 17 rev = version; 18 - sha256 = "sha256-1rr26dnV5As15HeFLWEDBDYPiRDHkGfYOYFhSJi7iyU="; 18 + sha256 = "sha256-NsZ/VQlKEp4p3JRSNQKTGvzLrKgDCkkT81NzgS3UHos="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -2
pkgs/servers/home-assistant/component-packages.nix
··· 2 2 # Do not edit! 3 3 4 4 { 5 - version = "2021.10.0"; 5 + version = "2021.10.2"; 6 6 components = { 7 7 "abode" = ps: with ps; [ abodepy ]; 8 8 "accuweather" = ps: with ps; [ accuweather ]; ··· 216 216 "edimax" = ps: with ps; [ pyedimax ]; 217 217 "edl21" = ps: with ps; [ pysml ]; 218 218 "ee_brightbox" = ps: with ps; [ eebrightbox ]; 219 - "efergy" = ps: with ps; [ ]; # missing inputs: pyefergy 219 + "efergy" = ps: with ps; [ pyefergy ]; 220 220 "egardia" = ps: with ps; [ pythonegardia ]; 221 221 "eight_sleep" = ps: with ps; [ pyeight ]; 222 222 "elgato" = ps: with ps; [ elgato ];
+2 -2
pkgs/servers/home-assistant/default.nix
··· 114 114 extraBuildInputs = extraPackages py.pkgs; 115 115 116 116 # Don't forget to run parse-requirements.py after updating 117 - hassVersion = "2021.10.0"; 117 + hassVersion = "2021.10.2"; 118 118 119 119 in with py.pkgs; buildPythonApplication rec { 120 120 pname = "homeassistant"; ··· 131 131 owner = "home-assistant"; 132 132 repo = "core"; 133 133 rev = version; 134 - sha256 = "0m54ynx0i4a6wljg6d9i6xa79c15cqah5cgaswgrbaxhjw5q78iv"; 134 + sha256 = "0nds4491v8wy4d8w842asjpjj7xhqghlq0h61i7z6wp8jln7m418"; 135 135 }; 136 136 137 137 # leave this in, so users don't have to constantly update their downstream patch handling
+2 -2
pkgs/servers/home-assistant/frontend.nix
··· 4 4 # the frontend version corresponding to a specific home-assistant version can be found here 5 5 # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json 6 6 pname = "home-assistant-frontend"; 7 - version = "20211006.0"; 7 + version = "20211007.0"; 8 8 9 9 src = fetchPypi { 10 10 inherit pname version; 11 - sha256 = "sha256-rlscTHqa1TMsIVW7kWFGR/feak0XewDRkybpo8dPXj0="; 11 + sha256 = "sha256-GchSCqdVPk8RVe4iNEVvrsIgrV9/CHE5bQwyaT+ErvU="; 12 12 }; 13 13 14 14 # there is nothing to strip in this package