1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 19:26:02 +00:00

python3Packages.crownstone-sse: relax aiohttp constraint

This commit is contained in:
Fabian Affolter 2021-11-26 09:14:41 +01:00
parent a811e4f5ba
commit 61b298c01f

View file

@ -27,6 +27,11 @@ buildPythonPackage rec {
certifi
];
postPatch = ''
substituteInPlace requirements.txt \
--replace "aiohttp~=3.7.4" "aiohttp>=3.7.4"
'';
# Tests are only providing coverage
doCheck = false;