python312Packages.botocore: 1.35.29 -> 1.35.30

Changelog: https://github.com/boto/botocore/blob/1.35.30/CHANGELOG.rst
This commit is contained in:
Gaetan Lepage 2024-10-01 09:12:14 +02:00
parent ae87c79207
commit 8a4f00414d

View File

@ -3,34 +3,35 @@
awscrt,
buildPythonPackage,
fetchPypi,
# build-system
setuptools,
# dependencies
jmespath,
python-dateutil,
urllib3,
# tests
jsonschema,
pytestCheckHook,
python-dateutil,
pythonOlder,
setuptools,
urllib3,
}:
buildPythonPackage rec {
pname = "botocore";
version = "1.35.29"; # N.B: if you change this, change boto3 and awscli to a matching version
version = "1.35.30"; # N.B: if you change this, change boto3 and awscli to a matching version
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-TtKKsDZ1uwCKKQxFLF3deqpdTj+hkSqtvfkwV+6ENis=";
hash = "sha256-q1NQ6KUOSNNx+i1RfWXCmkDEN4jLmhU4f5PqxaI98P0=";
};
pythonRelaxDeps = [ "urllib3" ];
nativeBuildInputs = [
build-system = [
setuptools
];
propagatedBuildInputs = [
dependencies = [
jmespath
python-dateutil
urllib3
@ -55,11 +56,11 @@ buildPythonPackage rec {
crt = [ awscrt ];
};
meta = with lib; {
meta = {
description = "Low-level interface to a growing number of Amazon Web Services";
homepage = "https://github.com/boto/botocore";
changelog = "https://github.com/boto/botocore/blob/${version}/CHANGELOG.rst";
license = licenses.asl20;
maintainers = with maintainers; [ anthonyroussel ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ anthonyroussel ];
};
}