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

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

91 lines
2.1 KiB
Nix
Raw Normal View History

2018-02-27 08:26:19 +00:00
{ lib
2019-10-27 15:02:22 +00:00
, python3
2023-05-25 19:37:59 +01:00
, fetchPypi
2017-11-10 17:02:35 +00:00
, groff
, less
, nix-update-script
, testers
, awscli
2017-11-10 17:02:35 +00:00
}:
let
self = python3.pkgs.buildPythonApplication rec {
pname = "awscli";
# N.B: if you change this, change botocore and boto3 to a matching version too
# check e.g. https://github.com/aws/aws-cli/blob/1.33.21/setup.py
version = "1.33.13";
pyproject = true;
2017-11-10 17:02:35 +00:00
src = fetchPypi {
inherit pname version;
hash = "sha256-utRALEoP+CWlmkPnbgByFSSX9Nr39iyTdv5uABT6Kps=";
};
2017-11-10 17:02:35 +00:00
pythonRelaxDeps = [
# botocore must not be relaxed
"colorama"
"docutils"
"rsa"
];
build-system = [
python3.pkgs.setuptools
];
propagatedBuildInputs = with python3.pkgs; [
botocore
s3transfer
colorama
docutils
rsa
pyyaml
groff
less
];
2017-11-10 17:02:35 +00:00
postInstall = ''
mkdir -p $out/share/bash-completion/completions
echo "complete -C $out/bin/aws_completer aws" > $out/share/bash-completion/completions/awscli
mkdir -p $out/share/zsh/site-functions
mv $out/bin/aws_zsh_completer.sh $out/share/zsh/site-functions
rm $out/bin/aws.cmd
'';
2017-11-10 17:02:35 +00:00
doInstallCheck = true;
2023-07-22 02:16:10 +01:00
installCheckPhase = ''
runHook preInstallCheck
$out/bin/aws --version | grep "${python3.pkgs.botocore.version}"
$out/bin/aws --version | grep "${version}"
runHook postInstallCheck
'';
passthru = {
python = python3; # for aws_shell
updateScript = nix-update-script {
extraArgs = [ "--version=skip" ];
};
tests.version = testers.testVersion {
package = awscli;
command = "aws --version";
inherit version;
};
};
meta = with lib; {
homepage = "https://aws.amazon.com/cli/";
changelog = "https://github.com/aws/aws-cli/blob/${version}/CHANGELOG.rst";
description = "Unified tool to manage your AWS services";
license = licenses.asl20;
mainProgram = "aws";
maintainers = with maintainers; [ anthonyroussel ];
};
2017-11-10 17:02:35 +00:00
};
in
assert self ? pythonRelaxDeps -> !(lib.elem "botocore" self.pythonRelaxDeps);
self