python3Packages.aiobotocore: fix build

This commit is contained in:
Jonathan Ringer 2021-09-17 16:20:09 -07:00
parent 9c45d3fa44
commit 3c7d0449ad
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0

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.49,<1.20.50' 'botocore'
substituteInPlace setup.py --replace 'botocore>=1.20.106,<1.20.107' 'botocore'
'';
propagatedBuildInputs = [ wrapt aiohttp aioitertools botocore ];