Merge pull request #34901 from dotlambda/home-assistant

home-assistant: 0.63 -> 0.63.1
This commit is contained in:
Frederik Rietdijk 2018-02-12 18:14:55 +00:00 committed by GitHub
commit 02b8929b70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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;