python311Packages.botocore: 1.33.6 -> 1.34.49

Changelog: https://github.com/boto/botocore/blob/1.34.49/CHANGELOG.rst
This commit is contained in:
Fabian Affolter 2024-02-24 10:54:03 +01:00
parent 4e83f670c7
commit 3a9389525e

View File

@ -7,23 +7,29 @@
, pytestCheckHook
, python-dateutil
, pythonOlder
, pythonRelaxDepsHook
, setuptools
, urllib3
}:
buildPythonPackage rec {
pname = "botocore";
version = "1.34.21"; # N.B: if you change this, change boto3 and awscli to a matching version
format = "setuptools";
version = "1.34.49"; # 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-IZg7sEc6GRMBksUOxpdNVfDEqkinCUvPQPeILItpuPE=";
hash = "sha256-2JQQvGBnPq/xaZ8/H9yw46Xh96agSMDYjDzlw1SUM+w=";
};
pythonRelaxDeps = [
"urllib3"
];
nativeBuildInputs = [
pythonRelaxDepsHook
setuptools
];