home-assistant: 2022.2.0 -> 2022.2.1

The frontend is now only availabe as a wheel due to the maximum size
limit for sdists imposed by PyPi.
main
Martin Weinelt 2 years ago
parent c18ca8f8ad
commit 7194bfac5a
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
  1. 2
      pkgs/servers/home-assistant/component-packages.nix
  2. 4
      pkgs/servers/home-assistant/default.nix
  3. 10
      pkgs/servers/home-assistant/frontend.nix

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

@ -121,7 +121,7 @@ let
extraBuildInputs = extraPackages python.pkgs;
# Don't forget to run parse-requirements.py after updating
hassVersion = "2022.2.0";
hassVersion = "2022.2.1";
in python.pkgs.buildPythonApplication rec {
pname = "homeassistant";
@ -139,7 +139,7 @@ in python.pkgs.buildPythonApplication rec {
owner = "home-assistant";
repo = "core";
rev = version;
hash = "sha256:01gx6i147h7amj41mv46x6j9aah4qd1zjybv5px5y9p5cbhjccms";
hash = "sha256:1r2xwa4pdswl4wgbmhi2b87qqa6dn4gy31hpvwyqldvzpl0zjw0m";
};
# leave this in, so users don't have to constantly update their downstream patch handling

@ -4,11 +4,15 @@ buildPythonPackage rec {
# the frontend version corresponding to a specific home-assistant version can be found here
# https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
pname = "home-assistant-frontend";
version = "20220202.0";
version = "20220203.0";
format = "wheel";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-O5oDDptQmwM02SESSS314YlvCqrOcEHNBSKlYE/qrTc=";
inherit version format;
pname = "home_assistant_frontend";
dist = "py3";
python = "py3";
sha256 = "sha256-5iODXctmkw+MIdf/GECGhhWOMruMqeWBDWwwwrNQMjU=";
};
# there is nothing to strip in this package

Loading…
Cancel
Save