2018-02-27 00:26:19 -08:00
|
|
|
{ lib
|
2020-11-25 10:00:41 -08:00
|
|
|
, nixosTests
|
2019-10-27 08:02:22 -07:00
|
|
|
, python3
|
2017-11-10 09:02:35 -08:00
|
|
|
, groff
|
|
|
|
, less
|
|
|
|
}:
|
|
|
|
let
|
2019-10-27 08:02:22 -07:00
|
|
|
py = python3.override {
|
2018-02-27 00:26:19 -08:00
|
|
|
packageOverrides = self: super: {
|
2020-11-25 09:45:27 -08:00
|
|
|
# TODO: https://github.com/aws/aws-cli/pull/5712
|
|
|
|
colorama = super.colorama.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "0.4.3";
|
|
|
|
src = oldAttrs.src.override {
|
|
|
|
inherit version;
|
|
|
|
sha256 = "189n8hpijy14jfan4ha9f5n06mnl33cxz7ay92wjqgkr639s0vg9";
|
|
|
|
};
|
|
|
|
});
|
2017-11-10 09:02:35 -08:00
|
|
|
};
|
2018-02-27 00:26:19 -08:00
|
|
|
};
|
2017-11-10 09:02:35 -08:00
|
|
|
|
2021-02-21 14:29:03 -08:00
|
|
|
in
|
|
|
|
with py.pkgs; buildPythonApplication rec {
|
2017-11-10 09:02:35 -08:00
|
|
|
pname = "awscli";
|
2021-04-15 08:14:36 -07:00
|
|
|
version = "1.19.52"; # N.B: if you change this, change botocore and boto3 to a matching version too
|
2017-11-10 09:02:35 -08:00
|
|
|
|
2020-02-08 05:11:49 -08:00
|
|
|
src = fetchPypi {
|
2017-11-10 09:02:35 -08:00
|
|
|
inherit pname version;
|
2021-04-15 08:14:36 -07:00
|
|
|
sha256 = "sha256-keKyuNeDC/90pn89KjoDTO8AGsmI8nqfDNSeGyM6iHQ=";
|
2017-11-10 09:02:35 -08:00
|
|
|
};
|
|
|
|
|
2021-01-24 01:16:52 -08:00
|
|
|
# https://github.com/aws/aws-cli/issues/4837
|
2020-02-08 05:11:49 -08:00
|
|
|
postPatch = ''
|
2021-01-24 01:16:52 -08:00
|
|
|
substituteInPlace setup.py \
|
2021-02-22 09:14:04 -08:00
|
|
|
--replace "docutils>=0.10,<0.16" "docutils>=0.10"
|
2020-02-08 05:11:49 -08:00
|
|
|
'';
|
|
|
|
|
2017-11-10 09:02:35 -08:00
|
|
|
# No tests included
|
|
|
|
doCheck = false;
|
|
|
|
|
2020-02-08 05:11:49 -08:00
|
|
|
propagatedBuildInputs = [
|
2017-11-10 09:02:35 -08:00
|
|
|
botocore
|
|
|
|
bcdoc
|
|
|
|
s3transfer
|
|
|
|
six
|
2018-02-27 00:26:19 -08:00
|
|
|
colorama
|
2017-11-10 09:02:35 -08:00
|
|
|
docutils
|
|
|
|
rsa
|
|
|
|
pyyaml
|
|
|
|
groff
|
|
|
|
less
|
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
2020-11-12 13:22:18 -08:00
|
|
|
mkdir -p $out/share/bash-completion/completions
|
|
|
|
echo "complete -C $out/bin/aws_completer aws" > $out/share/bash-completion/completions/awscli
|
|
|
|
|
2017-11-10 09:02:35 -08:00
|
|
|
mkdir -p $out/share/zsh/site-functions
|
|
|
|
mv $out/bin/aws_zsh_completer.sh $out/share/zsh/site-functions
|
2020-11-12 13:22:18 -08:00
|
|
|
|
2017-11-10 09:02:35 -08:00
|
|
|
rm $out/bin/aws.cmd
|
|
|
|
'';
|
|
|
|
|
2020-11-25 10:00:41 -08:00
|
|
|
passthru = {
|
|
|
|
python = py; # for aws_shell
|
|
|
|
|
|
|
|
tests = { inherit (nixosTests) awscli; };
|
|
|
|
};
|
2019-10-17 01:47:06 -07:00
|
|
|
|
2018-02-27 00:26:19 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://aws.amazon.com/cli/";
|
2017-11-10 09:02:35 -08:00
|
|
|
description = "Unified tool to manage your AWS services";
|
2018-02-27 00:26:19 -08:00
|
|
|
license = licenses.asl20;
|
2017-11-10 09:02:35 -08:00
|
|
|
maintainers = with maintainers; [ muflax ];
|
|
|
|
};
|
|
|
|
}
|