python311Packages.boto3: 1.28.57 -> 1.33.6

https://github.com/boto/boto3/compare/1.28.57...1.33.6
This commit is contained in:
Anthony Roussel 2023-11-27 12:20:52 +01:00 committed by Martin Weinelt
parent 24f657d938
commit 5d49cc8acb
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "boto3";
version = "1.28.57"; # N.B: if you change this, change botocore and awscli to a matching version
version = "1.33.6"; # N.B: if you change this, change botocore and awscli to a matching version
format = "pyproject";
src = fetchFromGitHub {
owner = "boto";
repo = pname;
rev = version;
hash = "sha256-+kuILCUK10tvpfTEAHZGvKKmpw6Pgn+v2kQkwCkPMKg=";
hash = "sha256-oOrUVBh1sbaOibU8A+bGZ4z7IEiE4gjHwZ+8889Hv60=";
};
nativeBuildInputs = [
@ -43,6 +43,10 @@ buildPythonPackage rec {
"tests/integration"
];
passthru.optional-dependencies = {
crt = [ botocore.optional-dependencies.crt ];
};
meta = with lib; {
homepage = "https://github.com/boto/boto3";
changelog = "https://github.com/boto/boto3/blob/${version}/CHANGELOG.rst";