nixpkgs/pkgs/tools/admin/awscli/default.nix
Dan Peebles 6b81baed99 botocore, boto3, awscli: 1.10.48->1.10.57, 1.7.48->1.10.57, 1.15.49->1.15.48
As usual, I update all three of these at once because updating any of them
individually will break one or more of them.
2018-07-13 10:11:31 -04:00

66 lines
1.4 KiB
Nix

{ lib
, python
, groff
, less
}:
let
py = python.override {
packageOverrides = self: super: {
colorama = super.colorama.overridePythonAttrs (oldAttrs: rec {
version = "0.3.7";
src = oldAttrs.src.override {
inherit version;
sha256 = "0avqkn6362v7k2kg3afb35g4sfdvixjgy890clip4q174p9whhz0";
};
});
};
};
in py.pkgs.buildPythonApplication rec {
pname = "awscli";
version = "1.15.58";
src = py.pkgs.fetchPypi {
inherit pname version;
sha256 = "19wnr498q2mwbp8l978ahy9y7p7icahx53898fki6sbhd9pn2miq";
};
# No tests included
doCheck = false;
propagatedBuildInputs = with py.pkgs; [
botocore
bcdoc
s3transfer
six
colorama
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
'';
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
'';
meta = with lib; {
homepage = https://aws.amazon.com/cli/;
description = "Unified tool to manage your AWS services";
license = licenses.asl20;
maintainers = with maintainers; [ muflax ];
};
}