diff --git a/pkgs/development/python-modules/crownstone-sse/default.nix b/pkgs/development/python-modules/crownstone-sse/default.nix index ff101713cfed..b6fedee081a4 100644 --- a/pkgs/development/python-modules/crownstone-sse/default.nix +++ b/pkgs/development/python-modules/crownstone-sse/default.nix @@ -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;