python3Packages.boto3: 1.17.4 -> 1.17.5

This commit is contained in:
Tim Steinbach 2021-02-10 10:01:03 -05:00
parent f1ecf61160
commit aa66f4bf5a
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.4"; # N.B: if you change this, change botocore too
version = "1.17.5"; # N.B: if you change this, change botocore too
src = fetchPypi {
inherit pname version;
sha256 = "sha256-ZVFEJ/X4SSRcmicvoGpaAUrjlFMz9PQHSJ0DT7mdxh8=";
sha256 = "sha256-1qr7gE/KK2fGXdp4rYtK/tkB4AQHEgi4TIBNNFrZ67o=";
};
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];