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

66 lines
1.5 KiB
Nix
Raw Normal View History

2018-02-27 08:26:19 +00:00
{ lib
2019-10-27 15:02:22 +00:00
, python3
2017-11-10 17:02:35 +00:00
, groff
, less
}:
let
2019-10-27 15:02:22 +00:00
py = python3.override {
2018-02-27 08:26:19 +00:00
packageOverrides = self: super: {
2019-12-22 20:50:38 +00:00
rsa = super.rsa.overridePythonAttrs (oldAttrs: rec {
version = "3.4.2";
src = oldAttrs.src.override {
inherit version;
2019-12-22 20:50:38 +00:00
sha256 = "25df4e10c263fb88b5ace923dd84bf9aa7f5019687b5e55382ffcdb8bede9db5";
};
});
2017-11-10 17:02:35 +00:00
};
2018-02-27 08:26:19 +00:00
};
2017-11-10 17:02:35 +00:00
in with py.pkgs; buildPythonApplication rec {
2017-11-10 17:02:35 +00:00
pname = "awscli";
2020-08-04 10:12:03 +01:00
version = "1.18.109"; # N.B: if you change this, change botocore to a matching version too
2017-11-10 17:02:35 +00:00
src = fetchPypi {
2017-11-10 17:02:35 +00:00
inherit pname version;
2020-08-04 10:12:03 +01:00
sha256 = "eca463ca5447d7db2eeebd268217b7e73f7e9a22b750505a3efd655dc189ac84";
2017-11-10 17:02:35 +00:00
};
postPatch = ''
2020-06-16 16:15:49 +01:00
substituteInPlace setup.py --replace "docutils>=0.10,<0.16" "docutils>=0.10"
'';
2017-11-10 17:02:35 +00:00
# No tests included
doCheck = false;
propagatedBuildInputs = [
2017-11-10 17:02:35 +00:00
botocore
bcdoc
s3transfer
six
2018-02-27 08:26:19 +00:00
colorama
2017-11-10 17:02:35 +00:00
docutils
rsa
pyyaml
groff
less
];
postInstall = ''
mkdir -p $out/etc/bash_completion.d
echo "complete -C $out/bin/aws_completer aws" > $out/etc/bash_completion.d/awscli
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
2018-02-27 08:26:19 +00:00
meta = with lib; {
homepage = "https://aws.amazon.com/cli/";
2017-11-10 17:02:35 +00:00
description = "Unified tool to manage your AWS services";
2018-02-27 08:26:19 +00:00
license = licenses.asl20;
2017-11-10 17:02:35 +00:00
maintainers = with maintainers; [ muflax ];
};
}