mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
65dcb3f08f
We force the use of docutils 0.16. If this does not work out, we can still override the version as this is an application.
65 lines
1.4 KiB
Nix
65 lines
1.4 KiB
Nix
{ lib
|
|
, python3
|
|
, groff
|
|
, less
|
|
}:
|
|
|
|
let
|
|
py = python3.override {
|
|
packageOverrides = self: super: {
|
|
rsa = super.rsa.overridePythonAttrs (oldAttrs: rec {
|
|
version = "3.4.2";
|
|
src = oldAttrs.src.override {
|
|
inherit version;
|
|
sha256 = "25df4e10c263fb88b5ace923dd84bf9aa7f5019687b5e55382ffcdb8bede9db5";
|
|
};
|
|
});
|
|
};
|
|
};
|
|
|
|
in with py.pkgs; buildPythonApplication rec {
|
|
pname = "awscli";
|
|
version = "1.17.13"; # N.B: if you change this, change botocore to a matching version too
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "c42fc35d4e9f82ce72b2a8b8d54df3a57fe363b0763a473e72d0006b0d1e06ff";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py --replace ",<0.16" ""
|
|
'';
|
|
|
|
# No tests included
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [
|
|
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
|
|
'';
|
|
|
|
passthru.python = py; # for aws_shell
|
|
|
|
meta = with lib; {
|
|
homepage = https://aws.amazon.com/cli/;
|
|
description = "Unified tool to manage your AWS services";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ muflax ];
|
|
};
|
|
}
|