summary refs log tree commit diff
path: root/pkgs/servers/home-assistant
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-06-15 11:48:54 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-06-15 11:48:54 +0200
commite5396c67e0f169ebab99d88659baec33e08cfc71 (patch)
tree352c551d860b7dbdefcb46884e324446ff0878b5 /pkgs/servers/home-assistant
parent786f1443173095fc0ed3ac3bbce9cb1f93262261 (diff)
downloadnixpkgs-e5396c67e0f169ebab99d88659baec33e08cfc71.tar
nixpkgs-e5396c67e0f169ebab99d88659baec33e08cfc71.tar.gz
nixpkgs-e5396c67e0f169ebab99d88659baec33e08cfc71.tar.bz2
nixpkgs-e5396c67e0f169ebab99d88659baec33e08cfc71.tar.lz
nixpkgs-e5396c67e0f169ebab99d88659baec33e08cfc71.tar.xz
nixpkgs-e5396c67e0f169ebab99d88659baec33e08cfc71.tar.zst
nixpkgs-e5396c67e0f169ebab99d88659baec33e08cfc71.zip
home-assistant: 2023.6.1 -> 2023.6.2
https://github.com/home-assistant/core/releases/tag/2023.6.2
Diffstat (limited to 'pkgs/servers/home-assistant')
-rw-r--r--pkgs/servers/home-assistant/component-packages.nix13
-rw-r--r--pkgs/servers/home-assistant/default.nix6
2 files changed, 9 insertions, 10 deletions
diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix
index 16eb57b2737..7547228bef2 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 = "2023.6.1";
+  version = "2023.6.2";
   components = {
     "3_day_blinds" = ps: with ps; [
     ];
@@ -2010,9 +2010,8 @@
     "keyboard" = ps: with ps; [
     ]; # missing inputs: pyuserinput
     "keyboard_remote" = ps: with ps; [
-      aionotify
       evdev
-    ];
+    ]; # missing inputs: asyncinotify
     "keymitt_ble" = ps: with ps; [
       pymicrobot
       aioesphomeapi
@@ -2863,7 +2862,8 @@
       opensensemap-api
     ];
     "opensky" = ps: with ps; [
-    ]; # missing inputs: python-opensky
+      python-opensky
+    ];
     "opentherm_gw" = ps: with ps; [
       pyotgw
     ];
@@ -2877,8 +2877,7 @@
       pyopnsense
     ];
     "opple" = ps: with ps; [
-      pyoppleio
-    ];
+    ]; # missing inputs: pyoppleio-legacy
     "oralb" = ps: with ps; [
       aioesphomeapi
       aiohttp-cors
@@ -3352,7 +3351,7 @@
       pyruckus
     ];
     "russound_rio" = ps: with ps; [
-    ]; # missing inputs: russound_rio
+    ]; # missing inputs: russound-rio
     "russound_rnet" = ps: with ps; [
     ]; # missing inputs: russound
     "ruuvi_gateway" = ps: with ps; [
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index 15844cfd01a..3262dd2af80 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -296,7 +296,7 @@ let
   extraBuildInputs = extraPackages python.pkgs;
 
   # Don't forget to run parse-requirements.py after updating
-  hassVersion = "2023.6.1";
+  hassVersion = "2023.6.2";
 
 in python.pkgs.buildPythonApplication rec {
   pname = "homeassistant";
@@ -312,7 +312,7 @@ in python.pkgs.buildPythonApplication rec {
   # Primary source is the pypi sdist, because it contains translations
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-8F2KiV/lujTbaWQl0IfCwzQ7HxNioHAHcffi7lL2hzs=";
+    hash = "sha256-WPjqKCktCEk7yPrz8/GDphoFtD4Q3j0cIxUxOEwc/i0=";
   };
 
   # Secondary source is git for tests
@@ -320,7 +320,7 @@ in python.pkgs.buildPythonApplication rec {
     owner = "home-assistant";
     repo = "core";
     rev = "refs/tags/${version}";
-    hash = "sha256-ojiNHl+sm1mLiM+rjESeR2zPOCGkG3RQ9to6VfetmZQ=";
+    hash = "sha256-qAwNuCoQN2r++QvKCTdNs7AePszSxwrFaY5FHXf3Vy8=";
   };
 
   nativeBuildInputs = with python.pkgs; [