forked from mirrors/nixpkgs
home-assistant: 0.108.2 -> 0.108.7
This commit is contained in:
parent
c1f5ac41a3
commit
9bb6948317
|
@ -1,4 +1,4 @@
|
||||||
From 80f39643bb4d25f8ffcbd92804844961b303f4d0 Mon Sep 17 00:00:00 2001
|
From 679364e1cd95dc7179dbd3114ec35b282fbcb0af Mon Sep 17 00:00:00 2001
|
||||||
From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= <joerg@thalheim.io>
|
From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= <joerg@thalheim.io>
|
||||||
Date: Thu, 9 Apr 2020 07:20:46 +0100
|
Date: Thu, 9 Apr 2020 07:20:46 +0100
|
||||||
Subject: [PATCH] setup.py: relax dependencies
|
Subject: [PATCH] setup.py: relax dependencies
|
||||||
|
@ -8,11 +8,11 @@ Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
Signed-off-by: Jörg Thalheim <joerg@thalheim.io>
|
Signed-off-by: Jörg Thalheim <joerg@thalheim.io>
|
||||||
---
|
---
|
||||||
setup.py | 10 +++++-----
|
setup.py | 12 ++++++------
|
||||||
1 file changed, 5 insertions(+), 5 deletions(-)
|
1 file changed, 6 insertions(+), 6 deletions(-)
|
||||||
|
|
||||||
diff --git a/setup.py b/setup.py
|
diff --git a/setup.py b/setup.py
|
||||||
index f53af0ee1..ff4227487 100755
|
index e0daacd98b..7166f1f228 100755
|
||||||
--- a/setup.py
|
--- a/setup.py
|
||||||
+++ b/setup.py
|
+++ b/setup.py
|
||||||
@@ -32,10 +32,10 @@ PROJECT_URLS = {
|
@@ -32,10 +32,10 @@ PROJECT_URLS = {
|
||||||
|
@ -28,7 +28,12 @@ index f53af0ee1..ff4227487 100755
|
||||||
"bcrypt==3.1.7",
|
"bcrypt==3.1.7",
|
||||||
"certifi>=2019.11.28",
|
"certifi>=2019.11.28",
|
||||||
"ciso8601==2.1.3",
|
"ciso8601==2.1.3",
|
||||||
@@ -47,9 +47,9 @@ REQUIRES = [
|
@@ -43,13 +43,13 @@ REQUIRES = [
|
||||||
|
"jinja2>=2.11.1",
|
||||||
|
"PyJWT==1.7.1",
|
||||||
|
# PyJWT has loose dependency. We want the latest one.
|
||||||
|
- "cryptography==2.8",
|
||||||
|
+ "cryptography>=2.8",
|
||||||
"pip>=8.0.3",
|
"pip>=8.0.3",
|
||||||
"python-slugify==4.0.0",
|
"python-slugify==4.0.0",
|
||||||
"pytz>=2019.03",
|
"pytz>=2019.03",
|
||||||
|
@ -42,5 +47,5 @@ index f53af0ee1..ff4227487 100755
|
||||||
"voluptuous-serialize==2.3.0",
|
"voluptuous-serialize==2.3.0",
|
||||||
]
|
]
|
||||||
--
|
--
|
||||||
2.25.1
|
2.26.1
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
# Do not edit!
|
# Do not edit!
|
||||||
|
|
||||||
{
|
{
|
||||||
version = "0.108.2";
|
version = "0.108.7";
|
||||||
components = {
|
components = {
|
||||||
"abode" = ps: with ps; [ ]; # missing inputs: abodepy
|
"abode" = ps: with ps; [ ]; # missing inputs: abodepy
|
||||||
"acer_projector" = ps: with ps; [ pyserial];
|
"acer_projector" = ps: with ps; [ pyserial];
|
||||||
|
|
|
@ -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.108.2";
|
hassVersion = "0.108.7";
|
||||||
|
|
||||||
in with py.pkgs; buildPythonApplication rec {
|
in with py.pkgs; buildPythonApplication rec {
|
||||||
pname = "homeassistant";
|
pname = "homeassistant";
|
||||||
|
@ -86,7 +86,7 @@ in with py.pkgs; buildPythonApplication rec {
|
||||||
owner = "home-assistant";
|
owner = "home-assistant";
|
||||||
repo = "home-assistant";
|
repo = "home-assistant";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0v4i1ak7pkpycas0mzdmxgc42xgfymwx2b0a2a4h13c4z46pbs2l";
|
sha256 = "0nk1615ms6nlmhgmsgsknc6m7b19baan8m4kr4s97njngiardxm7";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
|
|
@ -4,11 +4,11 @@ buildPythonPackage rec {
|
||||||
# the frontend version corresponding to a specific home-assistant version can be found here
|
# the frontend version corresponding to a specific home-assistant version can be found here
|
||||||
# https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
|
# https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
|
||||||
pname = "home-assistant-frontend";
|
pname = "home-assistant-frontend";
|
||||||
version = "20200407.2";
|
version = "20200418.0";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "0krwn67bkybjb69daik6dki5hm36xs4nbfwqkh0q7ami1xr1f56d";
|
sha256 = "12px8znc6nw5ndg4f28lvfpqsnzi00b5qgpdj9jwny0fss4aglnb";
|
||||||
};
|
};
|
||||||
|
|
||||||
# no Python tests implemented
|
# no Python tests implemented
|
||||||
|
|
Loading…
Reference in a new issue