Merge pull request #160339 from mweinelt/home-assistant

main
Martin Weinelt 2 years ago committed by GitHub
commit 7fea5d045d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      pkgs/development/python-modules/aiohue/default.nix
  2. 2
      pkgs/servers/home-assistant/component-packages.nix
  3. 4
      pkgs/servers/home-assistant/default.nix

@ -3,15 +3,19 @@
, fetchPypi
, aiohttp
, asyncio-throttle
, pythonOlder
}:
buildPythonPackage rec {
pname = "aiohue";
version = "4.0.1";
version = "4.1.2";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-wPqEubd+vUpdj7tM0CTPkW5kV4qlF19T+djlGrtA5h8=";
hash = "sha256-V+de9tcZBLaUVpyFLKDH9jv8Nq+UuauxnurGHbGW8xY=";
};
propagatedBuildInputs = [

@ -2,7 +2,7 @@
# Do not edit!
{
version = "2022.2.6";
version = "2022.2.7";
components = {
"abode" = ps: with ps; [ abodepy ];
"accuweather" = ps: with ps; [ accuweather ];

@ -138,7 +138,7 @@ let
extraPackagesFile = writeText "home-assistant-packages" (lib.concatMapStringsSep "\n" (pkg: pkg.pname) extraBuildInputs);
# Don't forget to run parse-requirements.py after updating
hassVersion = "2022.2.6";
hassVersion = "2022.2.7";
in python.pkgs.buildPythonApplication rec {
pname = "homeassistant";
@ -156,7 +156,7 @@ in python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = version;
hash = "sha256-UUiYp1YP+ak/2MncnGB0kE9+l2zQAyGjfD5srb5ArSI=";
hash = "sha256-jLam1FDN20/+o1Rq/GNd9VOVXJl8cCDoUxKCLY/ezpQ=";
};
# leave this in, so users don't have to constantly update their downstream patch handling

Loading…
Cancel
Save