Unverified Commit 855ce19d authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

awsebcli: 3.21 -> 3.22 (#399337)

parents f6e223a1 7e64b491
Loading
Loading
Loading
Loading
+5 −8
Original line number Diff line number Diff line
@@ -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; {