awsebcli: 3.21 -> 3.22

diff: https://github.com/aws/aws-elastic-beanstalk-cli/compare/3.21...3.22
This commit is contained in:
Kirill Radzikhovskyy
2025-04-17 09:34:48 +10:00
parent d02f81e678
commit 7e64b49101

View File

@@ -25,14 +25,14 @@ in
python.pkgs.buildPythonApplication rec {
pname = "awsebcli";
version = "3.21";
version = "3.22";
pyproject = true;
src = fetchFromGitHub {
owner = "aws";
repo = "aws-elastic-beanstalk-cli";
tag = version;
hash = "sha256-VU8bXvS4m4eIamjlgGmHE2qwDXWAXvWTa0QHomXR5ZE=";
hash = "sha256-I85VteUjPPWRixXC1mEiMmk46mYPzQJoaYcHV8ztMU4=";
};
pythonRelaxDeps = [
@@ -45,12 +45,6 @@ python.pkgs.buildPythonApplication rec {
"urllib3"
];
postPatch = ''
# https://github.com/aws/aws-elastic-beanstalk-cli/pull/469
substituteInPlace setup.py \
--replace-fail "scripts=['bin/eb']," ""
'';
dependencies = with python.pkgs; [
blessed
botocore
@@ -88,6 +82,9 @@ python.pkgs.buildPythonApplication rec {
"test_generate_and_upload_keypair__exit_code_1"
"test_generate_and_upload_keypair__exit_code_is_other_than_1_and_0"
"test_generate_and_upload_keypair__ssh_keygen_not_present"
# AssertionError: Expected 'echo' to be called once. Called 2 times
"test_multiple_modules__one_or_more_of_the_specified_modules_lacks_an_env_yaml"
];
meta = with lib; {