python3Packages.boto3: 1.17.34 -> 1.17.39

This commit is contained in:
Tim Steinbach 2021-03-29 09:21:13 -04:00 committed by Jonathan Ringer
parent 87e91218ab
commit f5c013d42b
1 changed files with 2 additions and 2 deletions

View File

@ -13,11 +13,11 @@
buildPythonPackage rec {
pname = "boto3";
version = "1.17.34"; # N.B: if you change this, change botocore and awscli to a matching version
version = "1.17.39"; # N.B: if you change this, change botocore and awscli to a matching version
src = fetchPypi {
inherit pname version;
sha256 = "sha256-jzPLPS/EKwVHpVYKbXOXqpMzb1CJk4Z2KyRQaCwOmSs=";
sha256 = "sha256-tYFP9ztbj8hgHBtztwZ1gH+c5kcTVi4YOghBWiUW7tQ=";
};
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];