python3Packages.amqtt: relax PyYAML constraint

This commit is contained in:
Robert Schütz
2021-12-09 15:34:02 -08:00
committed by Jonathan Ringer
parent 6dc89e7f42
commit c796bd3a68
@@ -28,7 +28,8 @@ buildPythonPackage rec {
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'websockets = "^9.0"' 'websockets = "^10.0"'
--replace 'websockets = "^9.0"' 'websockets = "^10.0"' \
--replace 'PyYAML = "^5.4.0"' 'PyYAML = "*"' \
'';
nativeBuildInputs = [ poetry-core ];