Merge pull request #43153 from dotlambda/home-assistant-0.73.0

home-assistant: 0.72.1 -> 0.73.0
This commit is contained in:
Peter Hoeg 2018-07-09 21:46:42 +08:00 committed by GitHub
commit f759a0d0a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 25 deletions

View file

@ -2,7 +2,7 @@
# Do not edit! # Do not edit!
{ {
version = "0.72.1"; version = "0.73.0";
components = { components = {
"abode" = ps: with ps; [ ]; "abode" = ps: with ps; [ ];
"ads" = ps: with ps; [ ]; "ads" = ps: with ps; [ ];
@ -113,6 +113,7 @@
"binary_sensor.pilight" = ps: with ps; [ ]; "binary_sensor.pilight" = ps: with ps; [ ];
"binary_sensor.ping" = ps: with ps; [ ]; "binary_sensor.ping" = ps: with ps; [ ];
"binary_sensor.qwikswitch" = ps: with ps; [ ]; "binary_sensor.qwikswitch" = ps: with ps; [ ];
"binary_sensor.rachio" = ps: with ps; [ ];
"binary_sensor.raincloud" = ps: with ps; [ ]; "binary_sensor.raincloud" = ps: with ps; [ ];
"binary_sensor.rainmachine" = ps: with ps; [ ]; "binary_sensor.rainmachine" = ps: with ps; [ ];
"binary_sensor.random" = ps: with ps; [ ]; "binary_sensor.random" = ps: with ps; [ ];
@ -205,6 +206,7 @@
"climate.generic_thermostat" = ps: with ps; [ ]; "climate.generic_thermostat" = ps: with ps; [ ];
"climate.heatmiser" = ps: with ps; [ ]; "climate.heatmiser" = ps: with ps; [ ];
"climate.hive" = ps: with ps; [ ]; "climate.hive" = ps: with ps; [ ];
"climate.homekit_controller" = ps: with ps; [ ];
"climate.homematic" = ps: with ps; [ pyhomematic ]; "climate.homematic" = ps: with ps; [ pyhomematic ];
"climate.homematicip_cloud" = ps: with ps; [ ]; "climate.homematicip_cloud" = ps: with ps; [ ];
"climate.honeywell" = ps: with ps; [ ]; "climate.honeywell" = ps: with ps; [ ];
@ -609,7 +611,7 @@
"media_player.samsungtv" = ps: with ps; [ wakeonlan ]; "media_player.samsungtv" = ps: with ps; [ wakeonlan ];
"media_player.snapcast" = ps: with ps; [ ]; "media_player.snapcast" = ps: with ps; [ ];
"media_player.songpal" = ps: with ps; [ ]; "media_player.songpal" = ps: with ps; [ ];
"media_player.sonos" = ps: with ps; [ ]; "media_player.sonos" = ps: with ps; [ soco ];
"media_player.soundtouch" = ps: with ps; [ libsoundtouch ]; "media_player.soundtouch" = ps: with ps; [ libsoundtouch ];
"media_player.spotify" = ps: with ps; [ aiohttp-cors ]; "media_player.spotify" = ps: with ps; [ aiohttp-cors ];
"media_player.squeezebox" = ps: with ps; [ ]; "media_player.squeezebox" = ps: with ps; [ ];
@ -635,6 +637,9 @@
"mychevy" = ps: with ps; [ ]; "mychevy" = ps: with ps; [ ];
"mycroft" = ps: with ps; [ ]; "mycroft" = ps: with ps; [ ];
"mysensors" = ps: with ps; [ ]; "mysensors" = ps: with ps; [ ];
"mysensors.const" = ps: with ps; [ ];
"mysensors.device" = ps: with ps; [ ];
"mysensors.gateway" = ps: with ps; [ ];
"namecheapdns" = ps: with ps; [ ]; "namecheapdns" = ps: with ps; [ ];
"neato" = ps: with ps; [ ]; "neato" = ps: with ps; [ ];
"nest" = ps: with ps; [ ]; "nest" = ps: with ps; [ ];
@ -715,6 +720,7 @@
"proximity" = ps: with ps; [ ]; "proximity" = ps: with ps; [ ];
"python_script" = ps: with ps; [ ]; "python_script" = ps: with ps; [ ];
"qwikswitch" = ps: with ps; [ ]; "qwikswitch" = ps: with ps; [ ];
"rachio" = ps: with ps; [ ];
"rainbird" = ps: with ps; [ ]; "rainbird" = ps: with ps; [ ];
"raincloud" = ps: with ps; [ ]; "raincloud" = ps: with ps; [ ];
"rainmachine" = ps: with ps; [ ]; "rainmachine" = ps: with ps; [ ];
@ -1031,7 +1037,7 @@
"sleepiq" = ps: with ps; [ ]; "sleepiq" = ps: with ps; [ ];
"smappee" = ps: with ps; [ ]; "smappee" = ps: with ps; [ ];
"snips" = ps: with ps; [ paho-mqtt ]; "snips" = ps: with ps; [ paho-mqtt ];
"sonos" = ps: with ps; [ ]; "sonos" = ps: with ps; [ soco ];
"spaceapi" = ps: with ps; [ aiohttp-cors ]; "spaceapi" = ps: with ps; [ aiohttp-cors ];
"spc" = ps: with ps; [ websockets ]; "spc" = ps: with ps; [ websockets ];
"splunk" = ps: with ps; [ ]; "splunk" = ps: with ps; [ ];

View file

@ -16,26 +16,10 @@ let
}; };
}); });
requests = super.requests.overridePythonAttrs (oldAttrs: rec { requests = super.requests.overridePythonAttrs (oldAttrs: rec {
version = "2.18.4"; version = "2.19.1";
src = oldAttrs.src.override { src = oldAttrs.src.override {
inherit version; inherit version;
sha256 = "0zi3v9nsmv9j27d0c0m1dvqyvaxz53g8m0aa1h3qanxs4irkwi4w"; sha256 = "ec22d826a36ed72a7358ff3fe56cbd4ba69dd7a6718ffd450ff0e9df7a47ce6a";
};
});
# Required by requests==2.18.4
urllib3 = super.urllib3.overridePythonAttrs (oldAttrs: rec {
version = "1.22";
src = oldAttrs.src.override {
inherit version;
sha256 = "0kyvc9zdlxr5r96bng5rhm9a6sfqidrbvvkz64s76qs5267dli6c";
};
});
# Required by requests==2.18.4
idna = super.idna.overridePythonAttrs (oldAttrs: rec {
version = "2.6";
src = oldAttrs.src.override {
inherit version;
sha256 = "13qaab6d0s15gknz8v3zbcfmbj6v86hn9pjxgkdf62ch13imssic";
}; };
}); });
voluptuous = super.voluptuous.overridePythonAttrs (oldAttrs: rec { voluptuous = super.voluptuous.overridePythonAttrs (oldAttrs: rec {
@ -84,7 +68,7 @@ let
extraBuildInputs = extraPackages py.pkgs; extraBuildInputs = extraPackages py.pkgs;
# Don't forget to run parse-requirements.py after updating # Don't forget to run parse-requirements.py after updating
hassVersion = "0.72.1"; hassVersion = "0.73.0";
in with py.pkgs; buildPythonApplication rec { in with py.pkgs; buildPythonApplication rec {
pname = "homeassistant"; pname = "homeassistant";
@ -99,7 +83,7 @@ in with py.pkgs; buildPythonApplication rec {
owner = "home-assistant"; owner = "home-assistant";
repo = "home-assistant"; repo = "home-assistant";
rev = version; rev = version;
sha256 = "05r55hdai0qwgpj2f2qqngks7qmz4lqcfbh2c1symfyigv7m634r"; sha256 = "1rj0glwqs8rzp8k2n82fjvidig5wbgkrl00mxvs5vbrpldd79kxq";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [

View file

@ -2,11 +2,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "home-assistant-frontend"; pname = "home-assistant-frontend";
version = "20180622.1"; version = "20180704.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1kzz1cmnpmsnrbc9amjcg8rb4a544xx2mpq4g23si6rk46b7n0x7"; sha256 = "eb6c0f330e4320092de708750675e3e973038a8b05928734b71a38d5a3ee66cf";
}; };
propagatedBuildInputs = [ user-agents ]; propagatedBuildInputs = [ user-agents ];