home-assistant: 0.77.1 -> 0.77.2

This commit is contained in:
Robert Schütz 2018-09-02 09:45:31 +02:00
parent 224a5503ca
commit e5bd748795
3 changed files with 7 additions and 7 deletions

View file

@ -2,7 +2,7 @@
# Do not edit!
{
version = "0.77.1";
version = "0.77.2";
components = {
"abode" = ps: with ps; [ ];
"ads" = ps: with ps; [ ];
@ -829,7 +829,7 @@
"sensor.comed_hourly_pricing" = ps: with ps; [ ];
"sensor.comfoconnect" = ps: with ps; [ ];
"sensor.command_line" = ps: with ps; [ ];
"sensor.cpuspeed" = ps: with ps; [ ];
"sensor.cpuspeed" = ps: with ps; [ py-cpuinfo ];
"sensor.crimereports" = ps: with ps; [ ];
"sensor.cups" = ps: with ps; [ pycups ];
"sensor.currencylayer" = ps: with ps; [ ];
@ -955,7 +955,7 @@
"sensor.opensky" = ps: with ps; [ ];
"sensor.openuv" = ps: with ps; [ ];
"sensor.openweathermap" = ps: with ps; [ pyowm ];
"sensor.otp" = ps: with ps; [ ];
"sensor.otp" = ps: with ps; [ pyotp ];
"sensor.pi_hole" = ps: with ps; [ ];
"sensor.pilight" = ps: with ps; [ ];
"sensor.plex" = ps: with ps; [ ];

View file

@ -75,7 +75,7 @@ let
extraBuildInputs = extraPackages py.pkgs;
# Don't forget to run parse-requirements.py after updating
hassVersion = "0.77.1";
hassVersion = "0.77.2";
in with py.pkgs; buildPythonApplication rec {
pname = "homeassistant";
@ -90,7 +90,7 @@ in with py.pkgs; buildPythonApplication rec {
owner = "home-assistant";
repo = "home-assistant";
rev = version;
sha256 = "1dqxxirglcl0srb4znwz61lxqba47g7q66bw4v1nfdwhxb0kj0w5";
sha256 = "0lqm8n54cs4ji9bqp1z70qswgqv8n9vl8jbip7c2f3icqx19zg10";
};
propagatedBuildInputs = [

View file

@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "home-assistant-frontend";
version = "20180829.1";
version = "20180831.0";
src = fetchPypi {
inherit pname version;
sha256 = "c3e1e3472760b6ebab5f73395e9fe332edf8bf6b0a30027fa68cf719fdb0df36";
sha256 = "d0f897bed934bc2d557db04f8c76ad143db9514ea71943a0038c5bfb3b2151ec";
};
propagatedBuildInputs = [ user-agents ];