From e7dc1e1d91ea5fab5a313e45be8e75b57100b1d9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 24 Feb 2024 11:51:35 +0100 Subject: [PATCH] python311Packages.boto3: 1.33.6 -> 1.34.49 Changelog: https://github.com/boto/boto3/blob/1.34.49/CHANGELOG.rst --- pkgs/development/python-modules/boto3/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/boto3/default.nix b/pkgs/development/python-modules/boto3/default.nix index e0e17a8f3de0..f1ab0c4f28e3 100644 --- a/pkgs/development/python-modules/boto3/default.nix +++ b/pkgs/development/python-modules/boto3/default.nix @@ -1,20 +1,19 @@ { lib , botocore , buildPythonPackage -, pythonOlder , fetchFromGitHub , jmespath , pytestCheckHook , pythonOlder -, s3transfer , pythonRelaxDepsHook +, s3transfer , setuptools }: buildPythonPackage rec { pname = "boto3"; - version = "1.34.21"; # N.B: if you change this, change botocore and awscli to a matching version - format = "pyproject"; + version = "1.34.49"; # N.B: if you change this, change botocore and awscli to a matching version + pyproject = true; disabled = pythonOlder "3.8"; @@ -22,7 +21,7 @@ buildPythonPackage rec { owner = "boto"; repo = "boto3"; rev = "refs/tags/${version}"; - hash = "sha256-oOrUVBh1sbaOibU8A+bGZ4z7IEiE4gjHwZ+8889Hv60="; + hash = "sha256-/pgbLSL5RJ5RrKUAfQ1QNJykBdICrpqnuziHOVHt1JI="; }; nativeBuildInputs = [