python3Packages.boto3: 1.17.18 -> 1.17.20

This commit is contained in:
Tim Steinbach 2021-03-04 10:40:07 -05:00 committed by Tim Steinbach
parent f4daac3c83
commit 49d1dfa72b

View file

@ -13,11 +13,11 @@
buildPythonPackage rec {
pname = "boto3";
version = "1.17.18"; # N.B: if you change this, change botocore and awscli to a matching version
version = "1.17.20"; # N.B: if you change this, change botocore and awscli to a matching version
src = fetchPypi {
inherit pname version;
sha256 = "sha256-NXCjwPvYC8swRJ+Hz50vertn+sKl4xfQAvmSHFm+mxc=";
sha256 = "sha256-Ihnx6+iNJmr6VRb5k5g+uodCuVf6T9aFTzxzqjAw6TE=";
};
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];