python3Packages.boto3: 1.16.42 -> 1.16.43

This commit is contained in:
Tim Steinbach 2020-12-23 17:08:31 -05:00
parent 421b7874ca
commit be349362ee
No known key found for this signature in database
GPG key ID: FD36A5EAAC49035A

View file

@ -13,11 +13,11 @@
buildPythonPackage rec {
pname = "boto3";
version = "1.16.42"; # N.B: if you change this, change botocore too
version = "1.16.43"; # N.B: if you change this, change botocore too
src = fetchPypi {
inherit pname version;
sha256 = "sha256-ko5z9R9xRpobDOrR+7N/MERX7FRACDPALAwyjmRYH+o=";
sha256 = "sha256-pJs6tL+i9jlLpgFlz8RoQQeX3UEPMu7UfiL2FFHumG4=";
};
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];