summaryrefslogtreecommitdiffstats
path: root/pkgs/servers
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-03-23 14:54:59 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-03-23 15:20:14 +0100
commited3d0139526e40ada8a2c92f928c507d9bee31f3 (patch)
treea581d3d2ab4b46f5966cb8e13a37e7ad6af969a3 /pkgs/servers
parent41984e4fbd78de953e1938f04831afec7756e018 (diff)
home-assistant: 2023.3.5 -> 2023.3.6
https://github.com/home-assistant/core/releases/tag/2023.3.6
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/home-assistant/component-packages.nix4
-rw-r--r--pkgs/servers/home-assistant/default.nix6
-rwxr-xr-xpkgs/servers/home-assistant/parse-requirements.py2
3 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix
index c22782960c68..879ecbacc0e4 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.3.5";
+ version = "2023.3.6";
components = {
"3_day_blinds" = ps: with ps; [
];
@@ -241,8 +241,8 @@
pyatome
];
"august" = ps: with ps; [
- yalexs
yalexs-ble
+ yalexs
];
"august_ble" = ps: with ps; [
];
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index b8347dea399c..33006a10d7e4 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -327,7 +327,7 @@ let
extraBuildInputs = extraPackages python.pkgs;
# Don't forget to run parse-requirements.py after updating
- hassVersion = "2023.3.5";
+ hassVersion = "2023.3.6";
in python.pkgs.buildPythonApplication rec {
pname = "homeassistant";
@@ -343,7 +343,7 @@ in python.pkgs.buildPythonApplication rec {
# Primary source is the pypi sdist, because it contains translations
src = fetchPypi {
inherit pname version;
- hash = "sha256-+n42LnfZ0R0ugUkse2EJ0wPUHn4YctrAb7hkBd8+ZjA=";
+ hash = "sha256-4PS6ozyqJddF6Jp9cKRojUtHTTNd3xo2oTDboowQACk=";
};
# Secondary source is git for tests
@@ -351,7 +351,7 @@ in python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = "refs/tags/${version}";
- hash = "sha256-v+c0hnY1Owr2YCQX8TVzKzYCLBsyUKPOvnVOjOeI6Dk=";
+ hash = "sha256-+u1kCyIzTQrMvO6slr1YW0kZqkh4QGxUo5ucJzxkfEE=";
};
nativeBuildInputs = with python3.pkgs; [
diff --git a/pkgs/servers/home-assistant/parse-requirements.py b/pkgs/servers/home-assistant/parse-requirements.py
index 7f0cb371769f..43e21dcfd922 100755
--- a/pkgs/servers/home-assistant/parse-requirements.py
+++ b/pkgs/servers/home-assistant/parse-requirements.py
@@ -1,5 +1,5 @@
#! /usr/bin/env nix-shell
-#! nix-shell -i python3 -p "python3.withPackages (ps: with ps; [ attrs packaging rich ])" -p nodePackages.pyright ruff isort"
+#! nix-shell -i python3 -p "python3.withPackages (ps: with ps; [ packaging rich ])" -p nodePackages.pyright ruff isort"
#
# This script downloads Home Assistant's source tarball.
# Inside the homeassistant/components directory, each integration has an associated manifest.json,