summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2020-12-11 14:30:12 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2020-12-11 14:30:12 +0100
commit80596e106dcba8bdd588a8325c4227f3f600a3fd (patch)
tree56592e9bebf38edf59cdf32f9136d705e322aca1 /pkgs
parentc76f365c0d647b438aefe43021565d9b32c313f6 (diff)
home-assistant: relax dependencies
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/home-assistant/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index bc0622e4f554..97bce134ebb0 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -87,8 +87,10 @@ in with py.pkgs; buildPythonApplication rec {
postPatch = ''
substituteInPlace setup.py \
--replace "aiohttp==3.7.1" "aiohttp>=3.6.3" \
+ --replace "attrs==19.3.0" "attrs>=19.3.0" \
--replace "bcrypt==3.1.7" "bcrypt>=3.1.7" \
--replace "cryptography==3.2" "cryptography" \
+ --replace "pip>=8.0.3,<20.3" "pip" \
--replace "requests==2.25.0" "requests>=2.24.0" \
--replace "ruamel.yaml==0.15.100" "ruamel.yaml>=0.15.100"
substituteInPlace tests/test_config.py --replace '"/usr"' '"/build/media"'