python3Packages.boto3: 1.17.1 -> 1.17.4

This commit is contained in:
Tim Steinbach 2021-02-09 08:44:52 -05:00
parent 9b9d086622
commit d3195b29c7
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.17.1"; # N.B: if you change this, change botocore too
version = "1.17.4"; # N.B: if you change this, change botocore too
src = fetchPypi {
inherit pname version;
sha256 = "sha256-WKRA9MlqHy8HZXfHCFI3hUum20GnyR5KM/swBo+NRpI=";
sha256 = "sha256-ZVFEJ/X4SSRcmicvoGpaAUrjlFMz9PQHSJ0DT7mdxh8=";
};
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];