python310Packages.boto3: 1.26.79 -> 1.28.9

This commit is contained in:
Theodore Ni 2023-07-19 18:50:01 -07:00 committed by Martin Weinelt
parent 5704093280
commit 438475dac5

View file

@ -10,25 +10,26 @@
buildPythonPackage rec {
pname = "boto3";
version = "1.26.79"; # N.B: if you change this, change botocore and awscli to a matching version
version = "1.28.9"; # N.B: if you change this, change botocore and awscli to a matching version
format = "pyproject";
src = fetchFromGitHub {
owner = "boto";
repo = pname;
rev = version;
hash = "sha256-9Xsng4xZ+IGNZ3ViYVrOyKZdRH6QPSjZALj9Q3HECBU=";
hash = "sha256-NkNHA20yn1Q7uoq/EL1Wn8F1fpi1waQujutGIKsnxlI=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
botocore
jmespath
s3transfer
setuptools
];
doCheck = true;
nativeCheckInputs = [
pytestCheckHook
];