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

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

145 lines
3.4 KiB
Nix
Raw Normal View History

2022-01-10 14:55:54 +00:00
{ lib
, python3
, groff
, less
, fetchFromGitHub
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
let
py = python3.override {
packageOverrides = self: super: {
2023-03-14 20:12:19 +00:00
ipython = super.ipython.overridePythonAttrs (oldAttrs: rec {
pname = "ipython";
version = "8.5.0";
src = self.fetchPypi {
inherit pname version;
sha256 = "sha256-CXvfXNh1dv0GYXnJ9/IIAE96aGTuGyDzfTRsC8sJn4Q=";
};
disabledTests = [ "testIPythonLexer" ] ++ oldAttrs.disabledTests;
});
2022-10-25 19:34:08 +00:00
prompt-toolkit = super.prompt-toolkit.overridePythonAttrs (oldAttrs: rec {
version = "3.0.28";
src = self.fetchPypi {
pname = "prompt_toolkit";
inherit version;
hash = "sha256-nxzRax6GwpaPJRnX+zHdnWaZFvUVYSwmnRTp7VK1FlA=";
};
});
};
};
in
with py.pkgs; buildPythonApplication rec {
pname = "awscli2";
2023-03-11 07:34:19 +00:00
version = "2.11.2"; # N.B: if you change this, check if overrides are still up-to-date
2022-10-25 19:34:08 +00:00
format = "pyproject";
src = fetchFromGitHub {
owner = "aws";
repo = "aws-cli";
rev = version;
2023-03-11 07:34:19 +00:00
hash = "sha256-GFdkE+XClm0L5Y+ZSwMW8gieNoRmNL3K8kVPxpH510k=";
};
postPatch = ''
2023-03-14 20:12:19 +00:00
substituteInPlace requirements/bootstrap.txt \
--replace "pip>=22.0.0,<23.0.0" "pip>=22.0.0,<24.0.0"
substituteInPlace pyproject.toml \
--replace "distro>=1.5.0,<1.6.0" "distro>=1.5.0" \
--replace "cryptography>=3.3.2,<38.0.5" "cryptography>=3.3.2"
'';
2022-10-25 19:34:08 +00:00
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
2021-05-10 02:35:19 +00:00
awscrt
bcdoc
colorama
cryptography
2020-08-04 02:49:08 +00:00
distro
docutils
groff
less
prompt-toolkit
pyyaml
rsa
ruamel-yaml
2022-04-20 19:18:39 +00:00
python-dateutil
2022-04-20 17:22:47 +00:00
jmespath
urllib3
];
nativeCheckInputs = [
2022-01-10 14:55:54 +00:00
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
'';
2022-10-25 19:34:08 +00:00
doCheck = true;
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";
version = version;
};
2022-10-25 19:34:08 +00:00
};
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;
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";
};
}