python3Packages.boto3: 1.17.30 -> 1.17.33

This commit is contained in:
Tim Steinbach 2021-03-22 11:23:42 -04:00
parent 09fbb851ba
commit 5e58c25e5d
No known key found for this signature in database
GPG Key ID: 1B40229F19262402

View File

@ -13,11 +13,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "boto3"; pname = "boto3";
version = "1.17.30"; # N.B: if you change this, change botocore and awscli to a matching version version = "1.17.33"; # N.B: if you change this, change botocore and awscli to a matching version
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-05wEtR5gGX9VA/hInwQ7yQSYFWfMhDHTiTZ3Z9w/1a4="; sha256 = "sha256-DKwv/8G6kV97tezuU5MYUy21HyGMkooij6/j5QHpRy4=";
}; };
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ]; propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];