114 lines
3.4 KiB
Nix
114 lines
3.4 KiB
Nix
{ lib, python3, groff, less, fetchFromGitHub }:
|
|
let
|
|
py = python3.override {
|
|
packageOverrides = self: super: {
|
|
awscrt = super.awscrt.overridePythonAttrs (oldAttrs: rec {
|
|
version = "0.12.4";
|
|
src = self.fetchPypi {
|
|
inherit (oldAttrs) pname;
|
|
inherit version;
|
|
sha256 = "sha256:1cmfkcv2zzirxsb989vx1hvna9nv24pghcvypl0zaxsjphv97mka";
|
|
};
|
|
});
|
|
botocore = super.botocore.overridePythonAttrs (oldAttrs: rec {
|
|
version = "2.0.0dev155";
|
|
src = fetchFromGitHub {
|
|
owner = "boto";
|
|
repo = "botocore";
|
|
rev = "7083e5c204e139dc41f646e0ad85286b5e7c0c23";
|
|
sha256 = "sha256-aiCc/CXoTem0a9wI/AMBRK3g2BXJi7LpnUY/BxBEKVM=";
|
|
};
|
|
propagatedBuildInputs = super.botocore.propagatedBuildInputs ++ [py.pkgs.awscrt];
|
|
});
|
|
prompt-toolkit = super.prompt-toolkit.overridePythonAttrs (oldAttrs: rec {
|
|
version = "2.0.10";
|
|
src = oldAttrs.src.override {
|
|
inherit version;
|
|
sha256 = "1nr990i4b04rnlw1ghd0xmgvvvhih698mb6lb6jylr76cs7zcnpi";
|
|
};
|
|
});
|
|
s3transfer = super.s3transfer.overridePythonAttrs (oldAttrs: rec {
|
|
version = "0.4.2";
|
|
src = oldAttrs.src.override {
|
|
inherit version;
|
|
sha256 = "sha256-ywIvSxZVHt67sxo3fT8JYA262nNj2MXbeXbn9Hcy4bI=";
|
|
};
|
|
});
|
|
};
|
|
};
|
|
|
|
in
|
|
with py.pkgs; buildPythonApplication rec {
|
|
pname = "awscli2";
|
|
version = "2.3.4"; # N.B: if you change this, change botocore to a matching version too
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aws";
|
|
repo = "aws-cli";
|
|
rev = version;
|
|
sha256 = "sha256-C/NrU+1AixuN4T1N5Zs8xduUQiwuQWvXkitQRnPJdNw=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.cfg \
|
|
--replace "colorama>=0.2.5,<0.4.4" "colorama" \
|
|
--replace "cryptography>=3.3.2,<3.4.0" "cryptography" \
|
|
--replace "docutils>=0.10,<0.16" "docutils" \
|
|
--replace "ruamel.yaml>=0.15.0,<0.16.0" "ruamel.yaml" \
|
|
--replace "s3transfer>=0.4.2,<0.5.0" "s3transfer" \
|
|
--replace "wcwidth<0.2.0" "wcwidth" \
|
|
--replace "distro>=1.5.0,<1.6.0" "distro"
|
|
'';
|
|
|
|
checkInputs = [ jsonschema mock pytestCheckHook pytest-xdist ];
|
|
|
|
propagatedBuildInputs = [
|
|
awscrt
|
|
bcdoc
|
|
botocore
|
|
colorama
|
|
cryptography
|
|
distro
|
|
docutils
|
|
groff
|
|
less
|
|
prompt-toolkit
|
|
pyyaml
|
|
rsa
|
|
ruamel-yaml
|
|
s3transfer
|
|
six
|
|
wcwidth
|
|
];
|
|
|
|
checkPhase = ''
|
|
export PATH=$PATH:$out/bin
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/16144#issuecomment-225422439
|
|
export HOME=$TMP
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/${python3.sitePackages}/awscli/data
|
|
${python3.interpreter} scripts/gen-ac-index --index-location $out/${python3.sitePackages}/awscli/data/ac.index
|
|
|
|
mkdir -p $out/share/bash-completion/completions
|
|
echo "complete -C $out/bin/aws_completer aws" > $out/share/bash-completion/completions/aws
|
|
|
|
mkdir -p $out/share/zsh/site-functions
|
|
mv $out/bin/aws_zsh_completer.sh $out/share/zsh/site-functions
|
|
|
|
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;
|
|
maintainers = with maintainers; [ bhipple davegallant ];
|
|
};
|
|
}
|