python311Packages.boto3: 1.33.6 -> 1.34.21
https://github.com/boto/boto3/compare/1.33.6...1.34.21
This commit is contained in:
@@ -1,29 +1,39 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
, botocore
|
||||
, jmespath
|
||||
, s3transfer
|
||||
, pythonRelaxDepsHook
|
||||
, setuptools
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "boto3";
|
||||
version = "1.33.6"; # N.B: if you change this, change botocore and awscli to a matching version
|
||||
version = "1.34.21"; # N.B: if you change this, change botocore and awscli to a matching version
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "boto";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-oOrUVBh1sbaOibU8A+bGZ4z7IEiE4gjHwZ+8889Hv60=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pythonRelaxDepsHook
|
||||
setuptools
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"botocore"
|
||||
"s3transfer"
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
botocore
|
||||
jmespath
|
||||
|
||||
Reference in New Issue
Block a user