python3Packages.boto3: 1.21.12 -> 1.21.30

This commit is contained in:
Martin Weinelt 2022-03-31 01:05:05 +02:00
parent 5f4d14bc97
commit 8a692adf5a

View file

@ -13,11 +13,11 @@
buildPythonPackage rec {
pname = "boto3";
version = "1.21.12"; # N.B: if you change this, change botocore and awscli to a matching version
version = "1.21.30"; # N.B: if you change this, change botocore and awscli to a matching version
src = fetchPypi {
inherit pname version;
sha256 = "sha256-yS7CCmcHIbWhvAE7MFqE2yt/nHFmU7MFbOfi+9KhgO8=";
sha256 = "sha256-8K+PTvX+Y1PHlM08zmJ9Rpphi1is58p1pjz9cZ32Fc4=";
};
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];