Skip to content

Commit

Permalink
awsebcli: remove eqyiel from maintainers; clean up; move to by-name; …
Browse files Browse the repository at this point in the history
…nixfmt-rfc-style (#346521)
  • Loading branch information
drupol authored Oct 5, 2024
2 parents d7a2d45 + 017f0a4 commit 847a9f1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 18 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
{ lib, python3, fetchFromGitHub, glibcLocales, git }:
{
lib,
python3,
fetchFromGitHub,
git,
}:

let
changeVersion = overrideFunc: version: hash: overrideFunc (oldAttrs: rec {
inherit version;
src = oldAttrs.src.override {
inherit version hash;
};
});
changeVersion =
overrideFunc: version: hash:
overrideFunc (oldAttrs: rec {
inherit version;
src = oldAttrs.src.override {
inherit version hash;
};
});

localPython = python3.override {
self = localPython;
Expand All @@ -33,16 +40,9 @@ localPython.pkgs.buildPythonApplication rec {

postPatch = ''
# https://github.com/aws/aws-elastic-beanstalk-cli/pull/469
substituteInPlace setup.py --replace "scripts=['bin/eb']," ""
substituteInPlace setup.py --replace-fail "scripts=['bin/eb']," ""
'';

nativeBuildInputs = with localPython.pkgs; [
];

buildInputs = [
glibcLocales
];

propagatedBuildInputs = with localPython.pkgs; [
blessed
botocore
Expand Down Expand Up @@ -95,7 +95,7 @@ localPython.pkgs.buildPythonApplication rec {
homepage = "https://aws.amazon.com/elasticbeanstalk/";
description = "Command line interface for Elastic Beanstalk";
changelog = "https://github.com/aws/aws-elastic-beanstalk-cli/blob/${version}/CHANGES.rst";
maintainers = with maintainers; [ eqyiel kirillrdy ];
maintainers = with maintainers; [ kirillrdy ];
license = licenses.asl20;
mainProgram = "eb";
};
Expand Down
2 changes: 0 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3155,8 +3155,6 @@ with pkgs;

okta-aws-cli = callPackage ../tools/admin/okta-aws-cli { };

awsebcli = callPackage ../tools/virtualization/awsebcli { };

awslimitchecker = callPackage ../tools/admin/awslimitchecker { };

awslogs = callPackage ../tools/admin/awslogs { };
Expand Down

0 comments on commit 847a9f1

Please sign in to comment.