lol

Merge pull request #145550 from NixOS/home-assistant

authored by

Martin Weinelt and committed by
GitHub
3d703b04 9d4ccae3

+18 -5
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2 2 # Do not edit! 3 3 4 4 { 5 - version = "2021.11.2"; 5 + version = "2021.11.3"; 6 6 components = { 7 7 "abode" = ps: with ps; [ abodepy ]; 8 8 "accuweather" = ps: with ps; [ accuweather ];
+15 -2
pkgs/servers/home-assistant/default.nix
··· 37 37 # Override the version of some packages pinned in Home Assistant's setup.py and requirements_all.txt 38 38 (mkOverride "python-slugify" "4.0.1" "69a517766e00c1268e5bbfc0d010a0a8508de0b18d30ad5a1ff357f8ae724270") 39 39 40 + (self: super: { 41 + huawei-lte-api = super.huawei-lte-api.overridePythonAttrs (oldAttrs: rec { 42 + version = "1.4.18"; 43 + src = fetchFromGitHub { 44 + owner = "Salamek"; 45 + repo = "huawei-lte-api"; 46 + rev = version; 47 + sha256 = "1qaqxmh03j10wa9wqbwgc5r3ays8wfr7bldvsm45fycr3qfyn5fg"; 48 + }; 49 + propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [ python3.pkgs.dicttoxml ]; 50 + }); 51 + }) 52 + 40 53 # Pinned due to API changes in iaqualink>=2.0, remove after 41 54 # https://github.com/home-assistant/core/pull/48137 was merged 42 55 (self: super: { ··· 127 140 extraBuildInputs = extraPackages py.pkgs; 128 141 129 142 # Don't forget to run parse-requirements.py after updating 130 - hassVersion = "2021.11.2"; 143 + hassVersion = "2021.11.3"; 131 144 132 145 in with py.pkgs; buildPythonApplication rec { 133 146 pname = "homeassistant"; ··· 144 157 owner = "home-assistant"; 145 158 repo = "core"; 146 159 rev = version; 147 - sha256 = "13212h67ijvir8rlr4gpd2945xx5f5c2lj3bwg7ncw55r23h6hma"; 160 + sha256 = "sha256-HycMb29niuUp7flRdWgrKSOcnr0l3PqjULCrgrwLrFw="; 148 161 }; 149 162 150 163 # 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 = "20211108.0"; 7 + version = "20211109.0"; 8 8 9 9 src = fetchPypi { 10 10 inherit pname version; 11 - sha256 = "sha256-cMCjBhtPi73AB9bplUH8ZNQMt5WJ/NZFW4qLuHHo3+g="; 11 + sha256 = "sha256-DXL+D58kS8q4we6/r6iRuXA/d9NOoYUp9A3vsHQ0KVg="; 12 12 }; 13 13 14 14 # there is nothing to strip in this package