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.

87 lines
1.9 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
2023-11-04 03:14:41 +00:00
, rich
, openapi3
, packaging
}:
2017-05-01 16:58:54 +00:00
let
2023-11-04 03:14:41 +00:00
hash = "sha256-J0L+FTVzYuAqTDOwpoH12lQr03UNo5dsQpd/iUKR40Q=";
2021-07-17 12:16:07 +00:00
# specVersion taken from: https://www.linode.com/docs/api/openapi.yaml at `info.version`.
2023-11-04 03:14:41 +00:00
specVersion = "4.166.0";
specHash = "sha256-rUwKQt3y/ALZUoW3eJiiIDJYLQpUHO7Abm0h09ra02g=";
spec = fetchurl {
2021-06-23 23:56:50 +00:00
url = "https://raw.githubusercontent.com/linode/linode-api-docs/v${specVersion}/openapi.yaml";
2023-11-04 03:14:41 +00:00
hash = specHash;
};
in
buildPythonApplication rec {
pname = "linode-cli";
2023-11-04 03:14:41 +00:00
version = "5.45.0";
pyproject = true;
2017-05-01 16:58:54 +00:00
src = fetchFromGitHub {
owner = "linode";
repo = pname;
2023-11-04 03:14:41 +00:00
rev = "v${version}";
inherit hash;
2017-05-01 16:58:54 +00:00
};
patches = [
./remove-update-check.patch
];
# remove need for git history
prePatch = ''
substituteInPlace setup.py \
2023-11-04 03:14:41 +00:00
--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
2023-11-04 03:14:41 +00:00
rich
openapi3
packaging
];
2017-05-01 16:58:54 +00:00
postConfigure = ''
python3 -m linodecli bake ${spec} --skip-config
cp data-3 linodecli/
2023-11-04 03:14:41 +00:00
echo "${version}" > baked_version
'';
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; {
2023-11-04 03:14:41 +00:00
mainProgram = "linode-cli";
description = "The Linode Command Line Interface";
2021-06-23 23:56:50 +00:00
homepage = "https://github.com/linode/linode-cli";
license = licenses.bsd3;
maintainers = with maintainers; [ ryantm techknowlogick ];
2017-05-01 16:58:54 +00:00
};
}