homeassistant: 0.116.2 -> 0.116.3

The project description changed a while ago, so let's update it.
This commit is contained in:
Martin Weinelt 2020-10-15 13:01:10 +02:00
parent d3b2419f1f
commit 3d5ecbd83e
No known key found for this signature in database
GPG key ID: BD4AA0528F63F17E
2 changed files with 5 additions and 5 deletions

View file

@ -2,7 +2,7 @@
# Do not edit! # Do not edit!
{ {
version = "0.116.2"; version = "0.116.3";
components = { components = {
"abode" = ps: with ps; [ abodepy ]; "abode" = ps: with ps; [ abodepy ];
"accuweather" = ps: with ps; [ ]; # missing inputs: accuweather "accuweather" = ps: with ps; [ ]; # missing inputs: accuweather
@ -36,7 +36,7 @@
"apcupsd" = ps: with ps; [ ]; # missing inputs: apcaccess "apcupsd" = ps: with ps; [ ]; # missing inputs: apcaccess
"api" = ps: with ps; [ aiohttp-cors ]; "api" = ps: with ps; [ aiohttp-cors ];
"apns" = ps: with ps; [ ]; # missing inputs: apns2 "apns" = ps: with ps; [ ]; # missing inputs: apns2
"apple_tv" = ps: with ps; [ aiohttp-cors netdisco pyatv zeroconf ]; "apple_tv" = ps: with ps; [ aiohttp-cors netdisco zeroconf ]; # missing inputs: pyatv
"apprise" = ps: with ps; [ apprise ]; "apprise" = ps: with ps; [ apprise ];
"aprs" = ps: with ps; [ ]; # missing inputs: aprslib geopy "aprs" = ps: with ps; [ ]; # missing inputs: aprslib geopy
"aqualogic" = ps: with ps; [ ]; # missing inputs: aqualogic "aqualogic" = ps: with ps; [ ]; # missing inputs: aqualogic

View file

@ -67,7 +67,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.116.2"; hassVersion = "0.116.3";
in with py.pkgs; buildPythonApplication rec { in with py.pkgs; buildPythonApplication rec {
pname = "homeassistant"; pname = "homeassistant";
@ -83,7 +83,7 @@ in with py.pkgs; buildPythonApplication rec {
owner = "home-assistant"; owner = "home-assistant";
repo = "core"; repo = "core";
rev = version; rev = version;
sha256 = "0q4yqcikkph05mkvg160664lyf0f1qkpm7yc6kh9hgigambxi0yp"; sha256 = "010a229cjgk3sy8amdavd54ysyrhnfrhrbskj0pg092cfj6jv85l";
}; };
patches = [ patches = [
@ -198,7 +198,7 @@ in with py.pkgs; buildPythonApplication rec {
meta = with lib; { meta = with lib; {
homepage = "https://home-assistant.io/"; homepage = "https://home-assistant.io/";
description = "Open-source home automation platform running on Python 3"; description = "Open source home automation that puts local control and privacy first";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ dotlambda globin mic92 hexa ]; maintainers = with maintainers; [ dotlambda globin mic92 hexa ];
}; };