From f86a943450fd57496f266fafeb0536055da7806c Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Tue, 17 Nov 2020 02:14:08 +0100 Subject: [PATCH] home-assistant: loosen aiohttp version pin to unbreak build nixpkgs's aiohttp is currently 3.6.3, which is API compatible with 3.6.2 required by home-assistant. --- pkgs/servers/home-assistant/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix index fb2909c32538..8e5435350eee 100644 --- a/pkgs/servers/home-assistant/default.nix +++ b/pkgs/servers/home-assistant/default.nix @@ -91,6 +91,7 @@ in with py.pkgs; buildPythonApplication rec { postPatch = '' substituteInPlace setup.py \ + --replace "aiohttp==3.6.2" "aiohttp>=3.6.2" \ --replace "bcrypt==3.1.7" "bcrypt>=3.1.7" \ --replace "cryptography==3.2" "cryptography" \ --replace "ruamel.yaml==0.15.100" "ruamel.yaml>=0.15.100"