Martin Weinelt 2 years ago
parent a7fddda828
commit 3808c892d2
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
  1. 4
      pkgs/servers/home-assistant/component-packages.nix
  2. 4
      pkgs/servers/home-assistant/default.nix

@ -2,7 +2,7 @@
# Do not edit!
{
version = "2022.3.6";
version = "2022.3.7";
components = {
"abode" = ps: with ps; [ abodepy ];
"accuweather" = ps: with ps; [ accuweather ];
@ -693,7 +693,7 @@
"qbittorrent" = ps: with ps; [ ]; # missing inputs: python-qbittorrent
"qld_bushfire" = ps: with ps; [ georss-qld-bushfire-alert-client ];
"qnap" = ps: with ps; [ ]; # missing inputs: qnapstats
"qrcode" = ps: with ps; [ pillow ]; # missing inputs: pyzbar
"qrcode" = ps: with ps; [ pillow pyzbar ];
"quantum_gateway" = ps: with ps; [ quantum-gateway ];
"qvr_pro" = ps: with ps; [ pyqvrpro ];
"qwikswitch" = ps: with ps; [ ]; # missing inputs: pyqwikswitch

@ -164,7 +164,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.6";
hassVersion = "2022.3.7";
in python.pkgs.buildPythonApplication rec {
pname = "homeassistant";
@ -182,7 +182,7 @@ in python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = version;
hash = "sha256-Cw3OLUDHkbGsxY3gQaAXcfoKeh5udODS8vVlT0Qta9Y=";
hash = "sha256-AewJf4GS3jfEN8Xq82NDV8PNpXXZIs2DHix/+tJpB8c=";
};
# leave this in, so users don't have to constantly update their downstream patch handling

Loading…
Cancel
Save