python3Packages.boto3: 1.16.41 -> 1.16.42

This commit is contained in:
Tim Steinbach 2020-12-23 12:08:09 -05:00
parent b8da36eb80
commit 8db43ec606
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.41"; # N.B: if you change this, change botocore too
version = "1.16.42"; # N.B: if you change this, change botocore too
src = fetchPypi {
inherit pname version;
sha256 = "sha256-DYTobuAuMshtMONd6WgDA6SAhz3S6Z3NyDSGuS3/sDw=";
sha256 = "sha256-ko5z9R9xRpobDOrR+7N/MERX7FRACDPALAwyjmRYH+o=";
};
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];