home-assistant: 0.63 -> 0.63.1

This commit is contained in:
Robert Schütz 2018-02-12 18:15:29 +01:00
parent 3e94432753
commit 3e42833a7f
2 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@
# Do not edit!
{
version = "0.63";
version = "0.63.1";
components = {
"nuimo_controller" = ps: with ps; [ ];
"bbb_gpio" = ps: with ps; [ ];

View file

@ -44,7 +44,7 @@ let
extraBuildInputs = extraPackages py.pkgs;
# Don't forget to run parse-requirements.py after updating
hassVersion = "0.63";
hassVersion = "0.63.1";
in with py.pkgs; buildPythonApplication rec {
pname = "homeassistant";
@ -57,12 +57,12 @@ in with py.pkgs; buildPythonApplication rec {
owner = "home-assistant";
repo = "home-assistant";
rev = version;
sha256 = "0gfdhjydl619jpnflnig5hzglib9385hdk5vw5pris0ksqk27mfk";
sha256 = "08dy1pcfhs123jq15yy2y29w2kfish5hnbixmzzbjmiz09zs3bh6";
};
propagatedBuildInputs = [
# From setup.py
requests pyyaml pytz pip jinja2 voluptuous typing aiohttp yarl async-timeout chardet astral certifi
requests pyyaml pytz pip jinja2 voluptuous typing aiohttp yarl async-timeout chardet astral certifi attrs
# From http, frontend and recorder components
sqlalchemy aiohttp-cors hass-frontend user-agents
] ++ componentBuildInputs ++ extraBuildInputs;