Merge pull request #119954 from superherointj/package-linode-cli-autocompletion

This commit is contained in:
Sandro 2021-04-20 23:45:53 +02:00 committed by GitHub
commit 41aba2cea4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,7 @@
, requests
, pyyaml
, setuptools
, installShellFiles
}:
let
@ -48,14 +49,21 @@ buildPythonApplication rec {
cp data-3 linodecli/
'';
# requires linode access token for unit tests, and running executable
doCheck = false;
doInstallCheck = true;
installCheckPhase = ''
$out/bin/linode-cli --skip-config --version | grep ${version} > /dev/null
'';
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installShellCompletion --cmd linode-cli --bash <($out/bin/linode-cli --skip-config completion bash)
'';
meta = with lib; {
homepage = "https://github.com/linode/linode-cli";
description = "The Linode Command Line Interface";
license = licenses.bsd3;
maintainers = with maintainers; [ ryantm ];
maintainers = with maintainers; [ ryantm superherointj ];
};
}