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.
This commit is contained in:
Pierre Bourdon 2020-11-17 02:14:08 +01:00
parent fb997de4bb
commit f86a943450
No known key found for this signature in database
GPG Key ID: 6FB80DCD84DA0F1C

View File

@ -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"