summary refs log tree commit diff
path: root/pkgs/servers/home-assistant
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-03-05 02:21:30 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-03-05 02:21:30 +0100
commita253e17d4a8e29b3c1933c7e2db882cfc1c679b5 (patch)
treeaba136bd2808b36bf73b221947c921c52948b8ea /pkgs/servers/home-assistant
parent9c465fc4e6ea70d493d9f6d0442dcb3cf5fefd10 (diff)
downloadnixpkgs-a253e17d4a8e29b3c1933c7e2db882cfc1c679b5.tar
nixpkgs-a253e17d4a8e29b3c1933c7e2db882cfc1c679b5.tar.gz
nixpkgs-a253e17d4a8e29b3c1933c7e2db882cfc1c679b5.tar.bz2
nixpkgs-a253e17d4a8e29b3c1933c7e2db882cfc1c679b5.tar.lz
nixpkgs-a253e17d4a8e29b3c1933c7e2db882cfc1c679b5.tar.xz
nixpkgs-a253e17d4a8e29b3c1933c7e2db882cfc1c679b5.tar.zst
nixpkgs-a253e17d4a8e29b3c1933c7e2db882cfc1c679b5.zip
home-assistant: 2022.3.0 -> 2022.3.1
https://github.com/home-assistant/core/releases/tag/2022.3.1
Diffstat (limited to 'pkgs/servers/home-assistant')
-rw-r--r--pkgs/servers/home-assistant/component-packages.nix2
-rw-r--r--pkgs/servers/home-assistant/default.nix6
2 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix
index 214efe7ebc7..472fa630ba4 100644
--- a/pkgs/servers/home-assistant/component-packages.nix
+++ b/pkgs/servers/home-assistant/component-packages.nix
@@ -2,7 +2,7 @@
 # Do not edit!
 
 {
-  version = "2022.3.0";
+  version = "2022.3.1";
   components = {
     "abode" = ps: with ps; [ abodepy ];
     "accuweather" = ps: with ps; [ accuweather ];
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index 089b953f5fa..470b47747cf 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -158,7 +158,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.3.0";
+  hassVersion = "2022.3.1";
 
 in python.pkgs.buildPythonApplication rec {
   pname = "homeassistant";
@@ -176,7 +176,7 @@ in python.pkgs.buildPythonApplication rec {
     owner = "home-assistant";
     repo = "core";
     rev = version;
-    hash = "sha256-ms5ZKOGhpCHHIMWBXtpNgaGhVPPJDoJKsFXbTfP7ApE=";
+    hash = "sha256-bihb6DL8hQuRnJZp39Lh2qfTXr0tFxn7FHFZewttNOc=";
   };
 
   # leave this in, so users don't have to constantly update their downstream patch handling
@@ -237,6 +237,8 @@ in python.pkgs.buildPythonApplication rec {
     yarl
     # Not in setup.py, but used in homeassistant/util/package.py
     setuptools
+    # Not in setup.py, but uncounditionally imported via tests/conftest.py
+    paho-mqtt
   ] ++ componentBuildInputs ++ extraBuildInputs;
 
   makeWrapperArgs = lib.optional skipPip "--add-flags --skip-pip";