python3Packages.aiobotocore: relax botocore constraint

This commit is contained in:
Robert Schütz 2022-01-17 19:56:34 +00:00 committed by Martin Weinelt
parent 7bcf54a916
commit dc9d5b4176

View File

@ -21,7 +21,7 @@ buildPythonPackage rec {
# relax version constraints: aiobotocore works with newer botocore versions
# the pinning used to match some `extras_require` we're not using.
postPatch = ''
substituteInPlace setup.py --replace 'botocore>=1.20.106,<1.20.107' 'botocore'
sed -i "s/'botocore>=.*'/'botocore'/" setup.py
'';
propagatedBuildInputs = [ wrapt aiohttp aioitertools botocore ];