python3Packages.boto3: 1.17.24 -> 1.17.25

This commit is contained in:
Tim Steinbach 2021-03-11 08:27:56 -05:00 committed by Tim Steinbach
parent 50271bfa76
commit ba3b293272

View file

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