2022-01-10 15:55:54 +01:00
|
|
|
{ lib
|
|
|
|
, python3
|
|
|
|
, groff
|
|
|
|
, less
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
2020-07-01 04:03:00 +02:00
|
|
|
let
|
|
|
|
py = python3.override {
|
|
|
|
packageOverrides = self: super: {
|
2021-09-11 04:51:11 +02:00
|
|
|
awscrt = super.awscrt.overridePythonAttrs (oldAttrs: rec {
|
2022-06-17 03:14:58 +02:00
|
|
|
version = "0.13.11";
|
2021-09-11 04:51:11 +02:00
|
|
|
src = self.fetchPypi {
|
|
|
|
inherit (oldAttrs) pname;
|
|
|
|
inherit version;
|
2022-06-17 03:14:58 +02:00
|
|
|
sha256 = "sha256-Yx3I3RD57Nx6Cvm4moc5zmMbdsHeYiMghDfbQUor38E=";
|
2021-09-11 04:51:11 +02:00
|
|
|
};
|
|
|
|
});
|
2020-07-01 04:03:00 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
with py.pkgs; buildPythonApplication rec {
|
|
|
|
pname = "awscli2";
|
2022-07-31 11:24:56 +02:00
|
|
|
version = "2.7.20"; # N.B: if you change this, check if overrides are still up-to-date
|
2020-07-01 04:03:00 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "aws";
|
|
|
|
repo = "aws-cli";
|
|
|
|
rev = version;
|
2022-07-31 11:24:56 +02:00
|
|
|
sha256 = "sha256-o6rs9OMP3154WApboSqUfVn3TRxap0htHczyjAMQe2I=";
|
2020-07-01 04:03:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2021-05-10 04:35:19 +02:00
|
|
|
awscrt
|
2020-07-01 04:03:00 +02:00
|
|
|
bcdoc
|
|
|
|
colorama
|
|
|
|
cryptography
|
2020-08-04 04:49:08 +02:00
|
|
|
distro
|
2020-07-01 04:03:00 +02:00
|
|
|
docutils
|
|
|
|
groff
|
|
|
|
less
|
2021-07-22 17:02:31 +02:00
|
|
|
prompt-toolkit
|
2020-07-01 04:03:00 +02:00
|
|
|
pyyaml
|
|
|
|
rsa
|
2021-11-03 11:10:50 +01:00
|
|
|
ruamel-yaml
|
2020-07-01 04:03:00 +02:00
|
|
|
wcwidth
|
2022-04-20 21:18:39 +02:00
|
|
|
python-dateutil
|
2022-04-20 19:22:47 +02:00
|
|
|
jmespath
|
|
|
|
urllib3
|
2020-07-01 04:03:00 +02:00
|
|
|
];
|
|
|
|
|
2022-01-10 15:55:54 +01:00
|
|
|
checkInputs = [
|
|
|
|
jsonschema
|
|
|
|
mock
|
|
|
|
pytestCheckHook
|
|
|
|
pytest-xdist
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.cfg \
|
|
|
|
--replace "colorama>=0.2.5,<0.4.4" "colorama" \
|
2022-06-20 09:22:12 +02:00
|
|
|
--replace "cryptography>=3.3.2,<37.0.0" "cryptography" \
|
2022-01-10 15:55:54 +01:00
|
|
|
--replace "docutils>=0.10,<0.16" "docutils" \
|
|
|
|
--replace "ruamel.yaml>=0.15.0,<0.16.0" "ruamel.yaml" \
|
|
|
|
--replace "wcwidth<0.2.0" "wcwidth" \
|
2022-07-18 19:29:28 +02:00
|
|
|
--replace "prompt-toolkit>=3.0.24,<3.0.29" "prompt-toolkit~=3.0" \
|
2022-01-10 15:55:54 +01:00
|
|
|
--replace "distro>=1.5.0,<1.6.0" "distro"
|
|
|
|
'';
|
|
|
|
|
2021-05-10 04:35:19 +02:00
|
|
|
checkPhase = ''
|
|
|
|
export PATH=$PATH:$out/bin
|
|
|
|
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/16144#issuecomment-225422439
|
|
|
|
export HOME=$TMP
|
|
|
|
'';
|
|
|
|
|
2020-07-01 04:03:00 +02:00
|
|
|
postInstall = ''
|
2020-11-13 16:44:16 +01:00
|
|
|
mkdir -p $out/${python3.sitePackages}/awscli/data
|
|
|
|
${python3.interpreter} scripts/gen-ac-index --index-location $out/${python3.sitePackages}/awscli/data/ac.index
|
|
|
|
|
2020-11-12 22:22:18 +01:00
|
|
|
mkdir -p $out/share/bash-completion/completions
|
2020-11-30 18:40:13 +01:00
|
|
|
echo "complete -C $out/bin/aws_completer aws" > $out/share/bash-completion/completions/aws
|
2020-11-12 22:22:18 +01:00
|
|
|
|
2020-07-01 04:03:00 +02:00
|
|
|
mkdir -p $out/share/zsh/site-functions
|
|
|
|
mv $out/bin/aws_zsh_completer.sh $out/share/zsh/site-functions
|
2020-11-12 22:22:18 +01:00
|
|
|
|
2020-07-01 04:03:00 +02:00
|
|
|
rm $out/bin/aws.cmd
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru.python = py; # for aws_shell
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2.html";
|
|
|
|
changelog = "https://github.com/aws/aws-cli/blob/${version}/CHANGELOG.rst";
|
|
|
|
description = "Unified tool to manage your AWS services";
|
|
|
|
license = licenses.asl20;
|
2022-07-18 12:25:13 +02:00
|
|
|
maintainers = with maintainers; [ bhipple davegallant bryanasdev000 devusb ];
|
2020-07-01 04:03:00 +02:00
|
|
|
};
|
|
|
|
}
|