nixpkgs/pkgs/tools/admin/awscli/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

92 lines
2.2 KiB
Nix
Raw Normal View History

2018-02-27 11:26:19 +03:00
{ lib
2019-10-27 18:02:22 +03:00
, python3
2022-01-02 03:24:15 +03:00
, fetchFromGitHub
2017-11-10 20:02:35 +03:00
, groff
, less
}:
let
2019-10-27 18:02:22 +03:00
py = python3.override {
2018-02-27 11:26:19 +03:00
packageOverrides = self: super: {
2022-01-02 03:24:15 +03:00
pyyaml = super.pyyaml.overridePythonAttrs (oldAttrs: rec {
version = "5.4.1";
src = fetchFromGitHub {
owner = "yaml";
repo = "pyyaml";
rev = version;
hash = "sha256-VUqnlOF/8zSOqh6JoEYOsfQ0P4g+eYqxyFTywgCS7gM=";
};
checkPhase = ''
runHook preCheck
PYTHONPATH="tests/lib3:$PYTHONPATH" ${self.python.interpreter} -m test_all
runHook postCheck
'';
});
2017-11-10 20:02:35 +03:00
};
self = py;
2018-02-27 11:26:19 +03:00
};
2017-11-10 20:02:35 +03:00
2021-02-22 01:29:03 +03:00
in
with py.pkgs; buildPythonApplication rec {
2017-11-10 20:02:35 +03:00
pname = "awscli";
version = "1.27.40"; # N.B: if you change this, change botocore and boto3 to a matching version too
2017-11-10 20:02:35 +03:00
src = fetchPypi {
2017-11-10 20:02:35 +03:00
inherit pname version;
hash = "sha256-xP+ugapi6KJE+UokGKmG67ze5dH6nJuJk7BjIr6dtTE=";
2017-11-10 20:02:35 +03:00
};
2021-01-24 12:16:52 +03:00
# https://github.com/aws/aws-cli/issues/4837
postPatch = ''
2021-01-24 12:16:52 +03:00
substituteInPlace setup.py \
2022-07-16 15:17:31 +03:00
--replace "docutils>=0.10,<0.17" "docutils>=0.10" \
--replace "colorama>=0.2.5,<0.4.5" "colorama>=0.2.5,<0.5" \
2021-11-29 03:45:39 +03:00
--replace "rsa>=3.1.2,<4.8" "rsa<5,>=3.1.2"
'';
propagatedBuildInputs = [
2017-11-10 20:02:35 +03:00
botocore
bcdoc
s3transfer
six
2018-02-27 11:26:19 +03:00
colorama
2017-11-10 20:02:35 +03:00
docutils
rsa
pyyaml
groff
less
];
postInstall = ''
mkdir -p $out/share/bash-completion/completions
echo "complete -C $out/bin/aws_completer aws" > $out/share/bash-completion/completions/awscli
2017-11-10 20:02:35 +03:00
mkdir -p $out/share/zsh/site-functions
mv $out/bin/aws_zsh_completer.sh $out/share/zsh/site-functions
2017-11-10 20:02:35 +03:00
rm $out/bin/aws.cmd
'';
2020-11-25 21:00:41 +03:00
passthru = {
python = py; # for aws_shell
};
doInstallCheck = true;
installCheckPhase = ''
runHook preInstallCheck
$out/bin/aws --version | grep "${py.pkgs.botocore.version}"
$out/bin/aws --version | grep "${version}"
runHook postInstallCheck
'';
2018-02-27 11:26:19 +03:00
meta = with lib; {
homepage = "https://aws.amazon.com/cli/";
2022-12-10 01:39:27 +03:00
changelog = "https://github.com/aws/aws-cli/blob/${version}/CHANGELOG.rst";
2017-11-10 20:02:35 +03:00
description = "Unified tool to manage your AWS services";
2018-02-27 11:26:19 +03:00
license = licenses.asl20;
mainProgram = "aws";
maintainers = with maintainers; [ ];
2017-11-10 20:02:35 +03:00
};
}