python3Packages.boto3: 1.17.41 -> 1.17.45

This commit is contained in:
Tim Steinbach 2021-04-06 08:54:29 -04:00
parent 7dab72898d
commit 03ceb942f1
No known key found for this signature in database
GPG Key ID: 1B40229F19262402
1 changed files with 2 additions and 2 deletions

View File

@ -13,11 +13,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "boto3"; pname = "boto3";
version = "1.17.41"; # N.B: if you change this, change botocore and awscli to a matching version version = "1.17.45"; # N.B: if you change this, change botocore and awscli to a matching version
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-2FsOBdfelhabACS3aykr5isB729cqFOlElBjRrgtKrs="; sha256 = "sha256-7dMELrpeIZFKfQmcuKJfAJwMQqlSnJrE9bhSrVs6ys8=";
}; };
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ]; propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];