python3Packages.botocore: 1.20.39 -> 1.20.40

This commit is contained in:
Robert Schütz 2021-03-30 17:42:32 +02:00
parent 24466250ec
commit 9fde535097

View File

@ -1,4 +1,5 @@
{ buildPythonPackage { lib
, buildPythonPackage
, fetchPypi , fetchPypi
, dateutil , dateutil
, jmespath , jmespath
@ -12,11 +13,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "botocore"; pname = "botocore";
version = "1.20.39"; # N.B: if you change this, change boto3 and awscli to a matching version version = "1.20.40"; # N.B: if you change this, change boto3 and awscli to a matching version
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-KFBtI/+pq/VmbCyQnH7cg6ERLNRP506xpJYN9WFTHpg="; sha256 = "sha256-ajWpl3zb16g52UjdX549JgwZt93nTgqETJcgaITTu6A=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -37,9 +38,11 @@ buildPythonPackage rec {
# Network access # Network access
doCheck = false; doCheck = false;
meta = { pythonImportsCheck = [ "botocore" ];
meta = with lib; {
homepage = "https://github.com/boto/botocore"; homepage = "https://github.com/boto/botocore";
license = "bsd"; license = licenses.asl20;
description = "A low-level interface to a growing number of Amazon Web Services"; description = "A low-level interface to a growing number of Amazon Web Services";
}; };
} }