python3Packages.boto3: 1.17.5 -> 1.17.12

This commit is contained in:
Tim Steinbach 2021-02-21 17:23:34 -05:00
parent 000d9c6bc1
commit 9b48ee2f9f
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.5"; # N.B: if you change this, change botocore too
version = "1.17.12"; # N.B: if you change this, change botocore too
src = fetchPypi {
inherit pname version;
sha256 = "sha256-1qr7gE/KK2fGXdp4rYtK/tkB4AQHEgi4TIBNNFrZ67o=";
sha256 = "sha256-YvBs0eenjYqqTlJ8MnZT6abBr0FbWYNgSKkMKKJ+Xwk=";
};
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];