nixpkgs/pkgs/tools/admin/awscli/default.nix
Dan Peebles 828547556e botocore: 1.12.48 -> 1.12.62
boto3: 1.9.36 -> 1.9.62
awscli: 1.16.72

I update all three of these at a time because they rely on each other
and get annoyed when such changes are non-atomic. Also added a note to
the packages telling people that this is needed. I tested awscli and the
libraries against a real account.
2018-12-10 16:19:05 -05:00

60 lines
1.3 KiB
Nix

{ lib
, python
, groff
, less
}:
let
py = python.override {
packageOverrides = self: super: {
rsa = super.rsa.overridePythonAttrs (oldAttrs: rec {
version = "3.4.2";
src = oldAttrs.src.override {
inherit version;
sha256 = "25df4e10c263fb88b5ace923dd84bf9aa7f5019687b5e55382ffcdb8bede9db5";
};
});
};
};
in py.pkgs.buildPythonApplication rec {
pname = "awscli";
version = "1.16.72"; # N.B: if you change this, change botocore to a matching version too
src = py.pkgs.fetchPypi {
inherit pname version;
sha256 = "1ld4a6yxnh0v96fjjp8wjf7zvx41grl57mqg92p6zbfssr2jbqfv";
};
# No tests included
doCheck = false;
propagatedBuildInputs = with py.pkgs; [
botocore
bcdoc
s3transfer
six
colorama
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
'';
meta = with lib; {
homepage = https://aws.amazon.com/cli/;
description = "Unified tool to manage your AWS services";
license = licenses.asl20;
maintainers = with maintainers; [ muflax ];
};
}