python3Packages.boto3: 1.17.39 -> 1.17.40

This commit is contained in:
Robert Schütz 2021-03-30 17:45:41 +02:00
parent 9fde535097
commit fae197a991

View File

@ -13,11 +13,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "boto3"; pname = "boto3";
version = "1.17.39"; # N.B: if you change this, change botocore and awscli to a matching version version = "1.17.40"; # 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-tYFP9ztbj8hgHBtztwZ1gH+c5kcTVi4YOghBWiUW7tQ="; sha256 = "sha256-7pmbRrLGMOUOewUtbf4iQgOjSNg7AOFoylAAmvDydsE=";
}; };
propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ]; propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];
@ -35,6 +35,8 @@ buildPythonPackage rec {
# Network access # Network access
doCheck = false; doCheck = false;
pythonImportsCheck = [ "boto3" ];
meta = { meta = {
homepage = "https://github.com/boto/boto3"; homepage = "https://github.com/boto/boto3";
license = lib.licenses.asl20; license = lib.licenses.asl20;