Commit ceee1d1c authored by Kirill Radzikhovskyy's avatar Kirill Radzikhovskyy
Browse files

awsebcli: 3.20.9 -> 3.20.10

parent 35502f30
Loading
Loading
Loading
Loading
+8 −16
Original line number Diff line number Diff line
{ lib, python3, fetchFromGitHub, glibcLocales, docker-compose_1, git }:
{ lib, python3, fetchFromGitHub, glibcLocales, git }:
let
  docker_compose = changeVersion (with localPython.pkgs; docker-compose_1.override {
    inherit colorama pyyaml six dockerpty docker jsonschema requests websocket-client paramiko;
  }).overridePythonAttrs "1.25.5" "sha256-ei622Bc/30COUF5vfUl6wLd3OIcZVCvp5JoO/Ud6UMY=";

  changeVersion = overrideFunc: version: hash: overrideFunc (oldAttrs: rec {
    inherit version;
    src = oldAttrs.src.override {
@@ -11,26 +7,23 @@ let
    };
  });

  localPython = python3.override
    {
  localPython = python3.override {
    self = localPython;
    packageOverrides = self: super: {
      cement = changeVersion super.cement.overridePythonAttrs "2.8.2" "sha256-h2XtBSwGHXTk0Bia3cM9Jo3lRMohmyWdeXdB9yXkItI=";
        wcwidth = changeVersion super.wcwidth.overridePythonAttrs "0.1.9" "sha256-7nOGKGKhVr93/5KwkDT8SCXdOvnPgbxbNgZo1CXzxfE=";
        semantic-version = changeVersion super.semantic-version.overridePythonAttrs "2.8.5" "sha256-0sst4FWHYpNGebmhBOguynr0SMn0l00fPuzP9lHfilQ=";
    };
  };
in
with localPython.pkgs; buildPythonApplication rec {
  pname = "awsebcli";
  version = "3.20.9";
  version = "3.20.10";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "aws";
    repo = "aws-elastic-beanstalk-cli";
    rev = "refs/tags/${version}";
    hash = "sha256-tnBDEeR+SCHb9UT3pTO7ISm4TVICvVfrV5cfz/60YQY=";
    hash = "sha256-4JZx0iTMyrPHbuS3zlhpiWnenAQO5eSBJbPHUizLhYo=";
  };

  postPatch = ''
@@ -60,7 +53,6 @@ with localPython.pkgs; buildPythonApplication rec {
    tabulate
    termcolor
    websocket-client
    docker_compose
  ];

  pythonRelaxDeps = [