python3Packages.boto3: 1.16.63 -> 1.17.0

This commit is contained in:
Tim Steinbach 2021-02-03 09:36:53 -05:00
parent 8b915807c5
commit f45e086caa
No known key found for this signature in database
GPG key ID: 1B40229F19262402

View file

@ -13,11 +13,11 @@
buildPythonPackage rec {
pname = "boto3";
version = "1.16.63"; # N.B: if you change this, change botocore too
version = "1.17.0"; # N.B: if you change this, change botocore too
src = fetchPypi {
inherit pname version;
sha256 = "sha256-yRnayXcxFQJeHip+Ri9gygguMiu29DVCR1I+QiYTOws=";
sha256 = "sha256-Kjm9Xl8tUM6SZ9aCzJJ1D4dxOZZlAh9H6A+cjS+4EqY=";
};
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];