python3Packages.aioambient: relax websockets constraint

This commit is contained in:
Martin Weinelt 2021-10-11 00:49:49 +02:00
parent f86eeb5658
commit f40ce33b8e

View File

@ -27,6 +27,11 @@ buildPythonPackage rec {
sha256 = "sha256-blejTXyLe3B2kNytBh+zJz0Q0xDP+Vo2SV9gc7OX6S0=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'websockets = ">=8.1,<10.0"' 'websockets = ">=8.1,<11.0"'
'';
nativeBuildInputs = [
poetry-core
];