python3Packages.boto3: 1.18.54 -> 1.20.13

This commit is contained in:
Jonathan Ringer 2021-11-25 14:46:39 -08:00
parent eb2aefe966
commit 5bd40af3c6
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -13,11 +13,11 @@
buildPythonPackage rec {
pname = "boto3";
version = "1.18.54"; # N.B: if you change this, change botocore and awscli to a matching version
version = "1.20.13"; # N.B: if you change this, change botocore and awscli to a matching version
src = fetchPypi {
inherit pname version;
sha256 = "sha256-LYHcSEAgBZ/HOBZZhDBBB9TbHGd0tjENCMiSoXUfaYA=";
sha256 = "bbf53a077d6a0575ddec8026f0475ca6ee6f41b227914bf315bf3e049a3d653a";
};
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];