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

74 lines
1.9 KiB
Nix
Raw Normal View History

2018-02-27 08:26:19 +00:00
{ lib
, python
2017-11-10 17:02:35 +00:00
, groff
, less
}:
let
2018-02-27 08:26:19 +00:00
py = python.override {
packageOverrides = self: super: {
2018-11-24 13:57:36 +00:00
rsa = super.rsa.overridePythonAttrs (oldAttrs: rec {
version = "3.4.2";
2018-02-27 08:26:19 +00:00
src = oldAttrs.src.override {
inherit version;
2018-11-24 13:57:36 +00:00
sha256 = "25df4e10c263fb88b5ace923dd84bf9aa7f5019687b5e55382ffcdb8bede9db5";
2018-02-27 08:26:19 +00:00
};
});
2019-02-14 19:18:51 +00:00
colorama = super.colorama.overridePythonAttrs (oldAttrs: rec {
version = "0.3.9";
src = oldAttrs.src.override {
inherit version;
sha256 = "48eb22f4f8461b1df5734a074b57042430fb06e1d61bd1e11b078c0fe6d7a1f1";
};
});
pyyaml = super.pyyaml.overridePythonAttrs (oldAttrs: rec {
version = "3.13";
src = oldAttrs.src.override {
inherit version;
sha256 = "3ef3092145e9b70e3ddd2c7ad59bdd0252a94dfe3949721633e41344de00a6bf";
};
2019-02-14 19:18:51 +00:00
});
2017-11-10 17:02:35 +00:00
};
2018-02-27 08:26:19 +00:00
};
2017-11-10 17:02:35 +00:00
2018-02-27 08:26:19 +00:00
in py.pkgs.buildPythonApplication rec {
2017-11-10 17:02:35 +00:00
pname = "awscli";
2019-02-16 09:05:55 +00:00
version = "1.16.106"; # N.B: if you change this, change botocore to a matching version too
2017-11-10 17:02:35 +00:00
2018-02-27 08:26:19 +00:00
src = py.pkgs.fetchPypi {
2017-11-10 17:02:35 +00:00
inherit pname version;
2019-02-16 09:05:55 +00:00
sha256 = "169810cb895ac8608747e81480aebd2712f654ad2e49e1f1315f34d6052d5e2d";
2017-11-10 17:02:35 +00:00
};
# No tests included
doCheck = false;
2018-02-27 08:26:19 +00:00
propagatedBuildInputs = with py.pkgs; [
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
'';
2018-02-27 08:26:19 +00:00
meta = with lib; {
2017-11-10 17:02:35 +00:00
homepage = https://aws.amazon.com/cli/;
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 ];
};
}