Merge pull request #158103 from mweinelt/home-assistant

authored by Martin Weinelt and committed by GitHub c28959e0 ffe7f27e

+12 -8
+2 -2
pkgs/development/python-modules/pytile/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "pytile"; 16 - version = "2022.01.0"; 17 format = "pyproject"; 18 19 disabled = pythonOlder "3.8"; ··· 22 owner = "bachya"; 23 repo = pname; 24 rev = version; 25 - sha256 = "sha256-7iR2R/ESaBd29Xf6ZKMGY41/uU55tB62QOvT3dFSZaE="; 26 }; 27 28 nativeBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "pytile"; 16 + version = "2022.02.0"; 17 format = "pyproject"; 18 19 disabled = pythonOlder "3.8"; ··· 22 owner = "bachya"; 23 repo = pname; 24 rev = version; 25 + sha256 = "sha256-IGjM9yU/3EjO9sV1ZZUX7RUL/a6CcMPzANhVMTcbZGU="; 26 }; 27 28 nativeBuildInputs = [
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2 # Do not edit! 3 4 { 5 - version = "2022.2.0"; 6 components = { 7 "abode" = ps: with ps; [ abodepy ]; 8 "accuweather" = ps: with ps; [ accuweather ];
··· 2 # Do not edit! 3 4 { 5 + version = "2022.2.1"; 6 components = { 7 "abode" = ps: with ps; [ abodepy ]; 8 "accuweather" = ps: with ps; [ accuweather ];
+2 -2
pkgs/servers/home-assistant/default.nix
··· 121 extraBuildInputs = extraPackages python.pkgs; 122 123 # Don't forget to run parse-requirements.py after updating 124 - hassVersion = "2022.2.0"; 125 126 in python.pkgs.buildPythonApplication rec { 127 pname = "homeassistant"; ··· 139 owner = "home-assistant"; 140 repo = "core"; 141 rev = version; 142 - hash = "sha256:01gx6i147h7amj41mv46x6j9aah4qd1zjybv5px5y9p5cbhjccms"; 143 }; 144 145 # leave this in, so users don't have to constantly update their downstream patch handling
··· 121 extraBuildInputs = extraPackages python.pkgs; 122 123 # Don't forget to run parse-requirements.py after updating 124 + hassVersion = "2022.2.1"; 125 126 in python.pkgs.buildPythonApplication rec { 127 pname = "homeassistant"; ··· 139 owner = "home-assistant"; 140 repo = "core"; 141 rev = version; 142 + hash = "sha256:1r2xwa4pdswl4wgbmhi2b87qqa6dn4gy31hpvwyqldvzpl0zjw0m"; 143 }; 144 145 # leave this in, so users don't have to constantly update their downstream patch handling
+7 -3
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 = "20220202.0"; 8 9 src = fetchPypi { 10 - inherit pname version; 11 - sha256 = "sha256-O5oDDptQmwM02SESSS314YlvCqrOcEHNBSKlYE/qrTc="; 12 }; 13 14 # 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 = "20220203.0"; 8 + format = "wheel"; 9 10 src = fetchPypi { 11 + inherit version format; 12 + pname = "home_assistant_frontend"; 13 + dist = "py3"; 14 + python = "py3"; 15 + sha256 = "sha256-5iODXctmkw+MIdf/GECGhhWOMruMqeWBDWwwwrNQMjU="; 16 }; 17 18 # there is nothing to strip in this package