python3Packages.boto3: 1.17.0 -> 1.17.1

This commit is contained in:
Tim Steinbach 2021-02-04 10:08:50 -05:00
parent 285fc47036
commit 2edd63b82f
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.0"; # N.B: if you change this, change botocore too
version = "1.17.1"; # N.B: if you change this, change botocore too
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Kjm9Xl8tUM6SZ9aCzJJ1D4dxOZZlAh9H6A+cjS+4EqY=";
sha256 = "sha256-WKRA9MlqHy8HZXfHCFI3hUum20GnyR5KM/swBo+NRpI=";
};
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];