2022-01-13 20:06:32 +00:00
|
|
|
{ lib
|
2023-11-16 04:20:00 +00:00
|
|
|
, stdenv
|
2022-01-13 20:06:32 +00:00
|
|
|
, python3
|
|
|
|
, groff
|
|
|
|
, less
|
|
|
|
, fetchFromGitHub
|
2023-11-16 04:20:00 +00:00
|
|
|
, installShellFiles
|
2022-10-30 15:09:59 +00:00
|
|
|
, nix-update-script
|
2022-11-27 09:42:12 +00:00
|
|
|
, testers
|
|
|
|
, awscli2
|
2022-01-13 20:06:32 +00:00
|
|
|
}:
|
2022-10-30 15:09:59 +00:00
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
let
|
2023-04-12 12:48:02 +00:00
|
|
|
py = python3 // {
|
2023-08-10 07:59:29 +00:00
|
|
|
pkgs = python3.pkgs.overrideScope (final: prev: {
|
2024-01-02 11:29:13 +00:00
|
|
|
sphinx = prev.sphinx.overridePythonAttrs (prev: {
|
|
|
|
disabledTests = prev.disabledTests ++ [
|
|
|
|
"test_check_link_response_only" # fails on hydra https://hydra.nixos.org/build/242624087/nixlog/1
|
|
|
|
];
|
|
|
|
});
|
2023-08-10 07:59:29 +00:00
|
|
|
ruamel-yaml = prev.ruamel-yaml.overridePythonAttrs (prev: {
|
|
|
|
src = prev.src.override {
|
|
|
|
version = "0.17.21";
|
|
|
|
hash = "sha256-i3zml6LyEnUqNcGsQURx3BbEJMlXO+SSa1b/P10jt68=";
|
|
|
|
};
|
|
|
|
});
|
2024-01-02 11:29:13 +00:00
|
|
|
urllib3 = prev.urllib3.overridePythonAttrs (prev: rec {
|
|
|
|
pyproject = true;
|
|
|
|
version = "1.26.18";
|
|
|
|
nativeBuildInputs = with final; [
|
|
|
|
setuptools
|
|
|
|
];
|
2023-11-16 04:20:00 +00:00
|
|
|
src = prev.src.override {
|
2024-01-02 11:29:13 +00:00
|
|
|
inherit version;
|
2023-11-16 04:20:00 +00:00
|
|
|
hash = "sha256-+OzBu6VmdBNFfFKauVW/jGe0XbeZ0VkGYmFxnjKFgKA=";
|
|
|
|
};
|
|
|
|
});
|
2023-04-12 12:48:02 +00:00
|
|
|
});
|
2020-07-18 16:06:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
with py.pkgs; buildPythonApplication rec {
|
|
|
|
pname = "awscli2";
|
2024-02-07 01:22:34 +00:00
|
|
|
version = "2.15.15"; # N.B: if you change this, check if overrides are still up-to-date
|
2024-01-02 11:29:13 +00:00
|
|
|
pyproject = true;
|
2020-07-18 16:06:22 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "aws";
|
|
|
|
repo = "aws-cli";
|
2023-10-09 19:29:22 +00:00
|
|
|
rev = "refs/tags/${version}";
|
2024-02-07 01:22:34 +00:00
|
|
|
hash = "sha256-hJuJkCiKgSxfPVgS5II7BwpyQhjaRE2Ct3ZJQq6xWgg=";
|
2020-07-18 16:06:22 +00:00
|
|
|
};
|
|
|
|
|
2023-03-04 12:14:45 +00:00
|
|
|
postPatch = ''
|
2023-08-10 07:59:29 +00:00
|
|
|
substituteInPlace pyproject.toml \
|
|
|
|
--replace 'cryptography>=3.3.2,<40.0.2' 'cryptography>=3.3.2' \
|
2023-10-09 19:29:22 +00:00
|
|
|
--replace 'flit_core>=3.7.1,<3.8.1' 'flit_core>=3.7.1' \
|
2024-02-07 01:22:34 +00:00
|
|
|
--replace 'awscrt>=0.19.18,<=0.19.19' 'awscrt>=0.19.18' \
|
2023-11-16 04:20:00 +00:00
|
|
|
--replace 'docutils>=0.10,<0.20' 'docutils>=0.10' \
|
|
|
|
--replace 'prompt-toolkit>=3.0.24,<3.0.39' 'prompt-toolkit>=3.0.24'
|
2023-10-09 19:29:22 +00:00
|
|
|
|
|
|
|
substituteInPlace requirements-base.txt \
|
|
|
|
--replace "wheel==0.38.4" "wheel>=0.38.4" \
|
|
|
|
--replace "flit_core==3.8.0" "flit_core>=3.8.0"
|
2023-08-22 20:05:09 +00:00
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
# Upstream needs pip to build and install dependencies and validates this
|
2023-08-22 20:05:09 +00:00
|
|
|
# with a configure script, but we don't as we provide all of the packages
|
|
|
|
# through PYTHONPATH
|
|
|
|
sed -i '/pip>=/d' requirements/bootstrap.txt
|
2023-03-04 12:14:45 +00:00
|
|
|
'';
|
|
|
|
|
2022-10-30 15:09:59 +00:00
|
|
|
nativeBuildInputs = [
|
2023-11-16 04:20:00 +00:00
|
|
|
installShellFiles
|
2022-10-30 15:09:59 +00:00
|
|
|
flit-core
|
|
|
|
];
|
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
propagatedBuildInputs = [
|
2021-05-20 23:08:51 +00:00
|
|
|
awscrt
|
2020-07-18 16:06:22 +00:00
|
|
|
bcdoc
|
2023-10-09 19:29:22 +00:00
|
|
|
botocore
|
2020-07-18 16:06:22 +00:00
|
|
|
colorama
|
|
|
|
cryptography
|
2020-08-20 17:08:02 +00:00
|
|
|
distro
|
2020-07-18 16:06:22 +00:00
|
|
|
docutils
|
|
|
|
groff
|
2023-10-09 19:29:22 +00:00
|
|
|
jmespath
|
2020-07-18 16:06:22 +00:00
|
|
|
less
|
2021-08-05 21:33:18 +00:00
|
|
|
prompt-toolkit
|
2023-10-09 19:29:22 +00:00
|
|
|
python-dateutil
|
2020-07-18 16:06:22 +00:00
|
|
|
pyyaml
|
2021-12-06 16:07:01 +00:00
|
|
|
ruamel-yaml
|
2022-04-27 09:35:20 +00:00
|
|
|
urllib3
|
2020-07-18 16:06:22 +00:00
|
|
|
];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2022-01-13 20:06:32 +00:00
|
|
|
jsonschema
|
|
|
|
mock
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
postInstall = ''
|
2023-11-16 04:20:00 +00:00
|
|
|
installShellCompletion --cmd aws \
|
|
|
|
--bash <(echo "complete -C $out/bin/aws_completer aws") \
|
|
|
|
--zsh $out/bin/aws_zsh_completer.sh
|
|
|
|
'' + lib.optionalString (!stdenv.hostPlatform.isWindows) ''
|
2020-07-18 16:06:22 +00:00
|
|
|
rm $out/bin/aws.cmd
|
|
|
|
'';
|
|
|
|
|
2022-10-30 15:09:59 +00:00
|
|
|
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 {
|
2022-12-28 21:21:41 +00:00
|
|
|
# Excludes 1.x versions from the Github tags list
|
|
|
|
extraArgs = [ "--version-regex" "^(2\.(.*))" ];
|
2022-10-30 15:09:59 +00:00
|
|
|
};
|
2022-11-27 09:42:12 +00:00
|
|
|
tests.version = testers.testVersion {
|
|
|
|
package = awscli2;
|
|
|
|
command = "aws --version";
|
2023-08-10 07:59:29 +00:00
|
|
|
inherit version;
|
2022-11-27 09:42:12 +00:00
|
|
|
};
|
2022-10-30 15:09:59 +00:00
|
|
|
};
|
2020-07-18 16:06:22 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2023-10-09 19:29:22 +00:00
|
|
|
description = "Unified tool to manage your AWS services";
|
2024-01-02 11:29:13 +00:00
|
|
|
homepage = "https://aws.amazon.com/cli/";
|
2020-07-18 16:06:22 +00:00
|
|
|
changelog = "https://github.com/aws/aws-cli/blob/${version}/CHANGELOG.rst";
|
|
|
|
license = licenses.asl20;
|
2022-10-30 15:09:59 +00:00
|
|
|
maintainers = with maintainers; [ bhipple davegallant bryanasdev000 devusb anthonyroussel ];
|
2022-11-27 09:42:12 +00:00
|
|
|
mainProgram = "aws";
|
2020-07-18 16:06:22 +00:00
|
|
|
};
|
|
|
|
}
|