d5f4a57cbf
GitOrigin-RevId: ce5e4a6ef2e59d89a971bc434ca8ca222b9c7f5e
136 lines
3.1 KiB
Nix
136 lines
3.1 KiB
Nix
{ lib
|
|
, python3
|
|
, groff
|
|
, less
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, nix-update-script
|
|
, testers
|
|
, awscli2
|
|
}:
|
|
|
|
let
|
|
py = python3 // {
|
|
pkgs = python3.pkgs.overrideScope (final: prev: {
|
|
ruamel-yaml = prev.ruamel-yaml.overridePythonAttrs (prev: {
|
|
src = prev.src.override {
|
|
version = "0.17.21";
|
|
hash = "sha256-i3zml6LyEnUqNcGsQURx3BbEJMlXO+SSa1b/P10jt68=";
|
|
};
|
|
});
|
|
});
|
|
};
|
|
|
|
in
|
|
with py.pkgs; buildPythonApplication rec {
|
|
pname = "awscli2";
|
|
version = "2.13.5"; # N.B: if you change this, check if overrides are still up-to-date
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aws";
|
|
repo = "aws-cli";
|
|
rev = version;
|
|
hash = "sha256-gtzRHNEReCKzGDdiwS5kngcJYp5oAHmhnOPl/uTyxvU=";
|
|
};
|
|
|
|
patches = [
|
|
# https://github.com/aws/aws-cli/pull/7912
|
|
(fetchpatch {
|
|
name = "update-flit-core.patch";
|
|
url = "https://github.com/aws/aws-cli/commit/83412a4b2ec750bada640a34a87bfe07ce41fb50.patch";
|
|
hash = "sha256-uhO6aOSptsARYWuXXEFhx+6rCW5/uGn2KQ15BnhzH68=";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace 'cryptography>=3.3.2,<40.0.2' 'cryptography>=3.3.2' \
|
|
--replace 'flit_core>=3.7.1,<3.8.1' 'flit_core>=3.7.1'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
flit-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
awscrt
|
|
bcdoc
|
|
colorama
|
|
cryptography
|
|
distro
|
|
docutils
|
|
groff
|
|
less
|
|
prompt-toolkit
|
|
pyyaml
|
|
rsa
|
|
ruamel-yaml
|
|
python-dateutil
|
|
jmespath
|
|
urllib3
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
jsonschema
|
|
mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
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
|
|
'';
|
|
|
|
preCheck = ''
|
|
export PATH=$PATH:$out/bin
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
pytestFlagsArray = [
|
|
"-Wignore::DeprecationWarning"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Integration tests require networking
|
|
"tests/integration"
|
|
|
|
# Disable slow tests (only run unit tests)
|
|
"tests/backends"
|
|
"tests/functional"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"awscli"
|
|
];
|
|
|
|
passthru = {
|
|
python = py; # for aws_shell
|
|
updateScript = nix-update-script {
|
|
# Excludes 1.x versions from the Github tags list
|
|
extraArgs = [ "--version-regex" "^(2\.(.*))" ];
|
|
};
|
|
tests.version = testers.testVersion {
|
|
package = awscli2;
|
|
command = "aws --version";
|
|
inherit version;
|
|
};
|
|
};
|
|
|
|
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 bryanasdev000 devusb anthonyroussel ];
|
|
mainProgram = "aws";
|
|
};
|
|
}
|