nixpkgs/pkgs/tools/virtualization/linode-cli/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

78 lines
1.7 KiB
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, fetchurl
2021-06-23 23:56:50 +00:00
, buildPythonApplication
, colorclass
2021-06-23 23:56:50 +00:00
, installShellFiles
, pyyaml
2021-06-23 23:56:50 +00:00
, requests
, setuptools
2021-06-23 23:56:50 +00:00
, terminaltables
}:
2017-05-01 16:58:54 +00:00
let
2022-11-02 01:36:14 +00:00
sha256 = "0lngwmb9j3nzwhkhq4r9sy82gwjry14lvjjgm8vfivbbakjdl7xp";
2021-07-17 12:16:07 +00:00
# specVersion taken from: https://www.linode.com/docs/api/openapi.yaml at `info.version`.
2022-11-02 01:36:14 +00:00
specVersion = "4.139.0";
specSha256 = "1z050vm049gb8vynp34iz9jpxwbpmbf5vbs1jsirwqbfhr1skslz";
spec = fetchurl {
2021-06-23 23:56:50 +00:00
url = "https://raw.githubusercontent.com/linode/linode-api-docs/v${specVersion}/openapi.yaml";
sha256 = specSha256;
};
in
buildPythonApplication rec {
pname = "linode-cli";
2022-11-02 01:36:14 +00:00
version = "5.25.0";
2017-05-01 16:58:54 +00:00
src = fetchFromGitHub {
owner = "linode";
repo = pname;
rev = version;
inherit sha256;
2017-05-01 16:58:54 +00:00
};
patches = [
./remove-update-check.patch
];
# remove need for git history
prePatch = ''
substituteInPlace setup.py \
--replace "version=get_version()," "version='${version}',"
2017-05-01 16:58:54 +00:00
'';
propagatedBuildInputs = [
colorclass
pyyaml
2021-06-23 23:56:50 +00:00
requests
setuptools
2021-06-23 23:56:50 +00:00
terminaltables
];
2017-05-01 16:58:54 +00:00
postConfigure = ''
python3 -m linodecli bake ${spec} --skip-config
cp data-3 linodecli/
'';
2017-05-01 16:58:54 +00:00
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)
'';
passthru.updateScript = ./update.sh;
meta = with lib; {
description = "The Linode Command Line Interface";
2021-06-23 23:56:50 +00:00
homepage = "https://github.com/linode/linode-cli";
license = licenses.bsd3;
2021-11-03 00:38:27 +00:00
maintainers = with maintainers; [ ryantm ];
2017-05-01 16:58:54 +00:00
};
}