From 3a9389525eb8baa2d744afadad58d3b1f01d2f35 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 24 Feb 2024 10:54:03 +0100 Subject: [PATCH] python311Packages.botocore: 1.33.6 -> 1.34.49 Changelog: https://github.com/boto/botocore/blob/1.34.49/CHANGELOG.rst --- pkgs/development/python-modules/botocore/default.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/botocore/default.nix b/pkgs/development/python-modules/botocore/default.nix index b178f5606aaa..89b6dbe07821 100644 --- a/pkgs/development/python-modules/botocore/default.nix +++ b/pkgs/development/python-modules/botocore/default.nix @@ -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 ];