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

66 lines
1.4 KiB
Nix
Raw Normal View History

2018-02-27 09:26:19 +01:00
{ lib
, python
2017-11-10 18:02:35 +01:00
, groff
, less
}:
let
2018-02-27 09:26:19 +01:00
py = python.override {
packageOverrides = self: super: {
colorama = super.colorama.overridePythonAttrs (oldAttrs: rec {
version = "0.3.7";
src = oldAttrs.src.override {
inherit version;
sha256 = "0avqkn6362v7k2kg3afb35g4sfdvixjgy890clip4q174p9whhz0";
};
});
2017-11-10 18:02:35 +01:00
};
2018-02-27 09:26:19 +01:00
};
2017-11-10 18:02:35 +01:00
2018-02-27 09:26:19 +01:00
in py.pkgs.buildPythonApplication rec {
2017-11-10 18:02:35 +01:00
pname = "awscli";
2018-08-25 18:16:34 +02:00
version = "1.16.1";
2017-11-10 18:02:35 +01:00
2018-02-27 09:26:19 +01:00
src = py.pkgs.fetchPypi {
2017-11-10 18:02:35 +01:00
inherit pname version;
2018-08-25 18:16:34 +02:00
sha256 = "5068efde694e24462646d271335fdef3dde8a0fbbfb986fab0ce7e5368a7df8d";
2017-11-10 18:02:35 +01:00
};
# No tests included
doCheck = false;
2018-02-27 09:26:19 +01:00
propagatedBuildInputs = with py.pkgs; [
2017-11-10 18:02:35 +01:00
botocore
bcdoc
s3transfer
six
2018-02-27 09:26:19 +01:00
colorama
2017-11-10 18:02:35 +01:00
docutils
rsa
pyyaml
groff
less
];
postPatch = ''
for i in {py,cfg}; do
substituteInPlace setup.$i --replace "botocore==1.10.10" "botocore>=1.10.9,<=1.11"
done
'';
2017-11-10 18:02:35 +01:00
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
'';
2018-02-27 09:26:19 +01:00
meta = with lib; {
2017-11-10 18:02:35 +01:00
homepage = https://aws.amazon.com/cli/;
description = "Unified tool to manage your AWS services";
2018-02-27 09:26:19 +01:00
license = licenses.asl20;
2017-11-10 18:02:35 +01:00
maintainers = with maintainers; [ muflax ];
};
}