2022-01-10 14:55:54 +00:00
|
|
|
{ lib
|
2023-11-06 23:20:24 +00:00
|
|
|
, stdenv
|
2022-01-10 14:55:54 +00:00
|
|
|
, python3
|
|
|
|
, groff
|
|
|
|
, less
|
|
|
|
, fetchFromGitHub
|
2023-11-06 23:20:24 +00:00
|
|
|
, installShellFiles
|
2022-10-25 19:34:08 +00:00
|
|
|
, nix-update-script
|
2022-11-21 22:09:58 +00:00
|
|
|
, testers
|
|
|
|
, awscli2
|
2022-01-10 14:55:54 +00:00
|
|
|
}:
|
2022-10-25 19:34:08 +00:00
|
|
|
|
2020-07-01 02:03:00 +00:00
|
|
|
let
|
2023-04-03 20:58:42 +00:00
|
|
|
py = python3 // {
|
2023-07-02 03:04:19 +00:00
|
|
|
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=";
|
|
|
|
};
|
|
|
|
});
|
2023-11-23 02:03:17 +00:00
|
|
|
urllib3 = prev.urllib3.overridePythonAttrs (prev: rec {
|
|
|
|
pyproject = true;
|
|
|
|
version = "1.26.18";
|
|
|
|
nativeBuildInputs = with final; [
|
|
|
|
setuptools
|
|
|
|
];
|
2023-09-16 13:51:58 +00:00
|
|
|
src = prev.src.override {
|
2023-11-23 02:03:17 +00:00
|
|
|
inherit version;
|
2023-11-06 22:44:18 +00:00
|
|
|
hash = "sha256-+OzBu6VmdBNFfFKauVW/jGe0XbeZ0VkGYmFxnjKFgKA=";
|
2023-09-16 13:51:58 +00:00
|
|
|
};
|
|
|
|
});
|
2023-04-03 20:58:42 +00:00
|
|
|
});
|
2020-07-01 02:03:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
with py.pkgs; buildPythonApplication rec {
|
|
|
|
pname = "awscli2";
|
2023-11-25 17:29:15 +00:00
|
|
|
version = "2.13.38"; # N.B: if you change this, check if overrides are still up-to-date
|
2022-10-25 19:34:08 +00:00
|
|
|
format = "pyproject";
|
2020-07-01 02:03:00 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "aws";
|
|
|
|
repo = "aws-cli";
|
2023-08-25 22:24:37 +00:00
|
|
|
rev = "refs/tags/${version}";
|
2023-11-25 17:29:15 +00:00
|
|
|
hash = "sha256-BsdvmF2ZoiO5uTkrd1G0cgP3/nAPR+nDMO2Se4Tt990=";
|
2020-07-01 02:03:00 +00:00
|
|
|
};
|
|
|
|
|
2023-07-23 00:18:59 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace pyproject.toml \
|
2023-08-05 16:40:32 +00:00
|
|
|
--replace 'cryptography>=3.3.2,<40.0.2' 'cryptography>=3.3.2' \
|
2023-08-25 22:24:37 +00:00
|
|
|
--replace 'flit_core>=3.7.1,<3.8.1' 'flit_core>=3.7.1' \
|
2023-11-25 17:29:15 +00:00
|
|
|
--replace 'awscrt>=0.16.4,<=0.19.12' 'awscrt>=0.16.4' \
|
2023-09-16 13:51:58 +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-08-25 22:24:37 +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-17 19:23:36 +00:00
|
|
|
|
2023-08-25 22:24:37 +00:00
|
|
|
# Upstream needs pip to build and install dependencies and validates this
|
2023-08-17 19:23:36 +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-07-23 00:18:59 +00:00
|
|
|
'';
|
|
|
|
|
2022-10-25 19:34:08 +00:00
|
|
|
nativeBuildInputs = [
|
2023-11-06 23:20:24 +00:00
|
|
|
installShellFiles
|
2022-10-25 19:34:08 +00:00
|
|
|
flit-core
|
|
|
|
];
|
|
|
|
|
2020-07-01 02:03:00 +00:00
|
|
|
propagatedBuildInputs = [
|
2021-05-10 02:35:19 +00:00
|
|
|
awscrt
|
2020-07-01 02:03:00 +00:00
|
|
|
bcdoc
|
2023-08-25 22:24:37 +00:00
|
|
|
botocore
|
2020-07-01 02:03:00 +00:00
|
|
|
colorama
|
|
|
|
cryptography
|
2020-08-04 02:49:08 +00:00
|
|
|
distro
|
2020-07-01 02:03:00 +00:00
|
|
|
docutils
|
|
|
|
groff
|
2023-08-25 22:24:37 +00:00
|
|
|
jmespath
|
2020-07-01 02:03:00 +00:00
|
|
|
less
|
2021-07-22 15:02:31 +00:00
|
|
|
prompt-toolkit
|
2023-08-25 22:24:37 +00:00
|
|
|
python-dateutil
|
2020-07-01 02:03:00 +00:00
|
|
|
pyyaml
|
2021-11-03 10:10:50 +00:00
|
|
|
ruamel-yaml
|
2022-04-20 17:22:47 +00:00
|
|
|
urllib3
|
2020-07-01 02:03:00 +00:00
|
|
|
];
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [
|
2022-01-10 14:55:54 +00:00
|
|
|
jsonschema
|
|
|
|
mock
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
2020-07-01 02:03:00 +00:00
|
|
|
postInstall = ''
|
2023-11-06 23:20:24 +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-01 02:03:00 +00:00
|
|
|
rm $out/bin/aws.cmd
|
|
|
|
'';
|
|
|
|
|
2022-10-25 19:34:08 +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-19 05:08:16 +00:00
|
|
|
# Excludes 1.x versions from the Github tags list
|
|
|
|
extraArgs = [ "--version-regex" "^(2\.(.*))" ];
|
2022-10-25 19:34:08 +00:00
|
|
|
};
|
2022-11-21 22:09:58 +00:00
|
|
|
tests.version = testers.testVersion {
|
|
|
|
package = awscli2;
|
|
|
|
command = "aws --version";
|
2023-07-02 03:04:19 +00:00
|
|
|
inherit version;
|
2022-11-21 22:09:58 +00:00
|
|
|
};
|
2022-10-25 19:34:08 +00:00
|
|
|
};
|
2020-07-01 02:03:00 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2023-08-25 22:24:37 +00:00
|
|
|
description = "Unified tool to manage your AWS services";
|
2023-11-25 17:29:34 +00:00
|
|
|
homepage = "https://aws.amazon.com/cli/";
|
2020-07-01 02:03:00 +00:00
|
|
|
changelog = "https://github.com/aws/aws-cli/blob/${version}/CHANGELOG.rst";
|
|
|
|
license = licenses.asl20;
|
2022-10-25 19:34:08 +00:00
|
|
|
maintainers = with maintainers; [ bhipple davegallant bryanasdev000 devusb anthonyroussel ];
|
2022-11-21 22:09:58 +00:00
|
|
|
mainProgram = "aws";
|
2020-07-01 02:03:00 +00:00
|
|
|
};
|
|
|
|
}
|