nixpkgs/pkgs/servers/home-assistant/cli.nix

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

65 lines
1.5 KiB
Nix
Raw Normal View History

{
lib,
stdenv,
fetchFromGitHub,
python3,
installShellFiles,
}:
2018-12-12 13:00:44 +00:00
2022-10-01 23:39:34 +00:00
python3.pkgs.buildPythonApplication rec {
2018-12-12 13:00:44 +00:00
pname = "homeassistant-cli";
2022-10-24 22:41:05 +00:00
version = "0.9.6";
2022-10-01 23:39:34 +00:00
format = "setuptools";
src = fetchFromGitHub {
owner = "home-assistant-ecosystem";
repo = "home-assistant-cli";
rev = version;
2022-10-24 22:41:05 +00:00
hash = "sha256-4OeHJ7icDZUOC5K4L0F0Nd9lbJPgdW4LCU0wniLvJ1Q=";
2018-12-12 13:00:44 +00:00
};
postPatch = ''
# Ignore pinned versions
2019-01-29 22:31:10 +00:00
sed -i "s/'\(.*\)\(==\|>=\).*'/'\1'/g" setup.py
2018-12-12 13:00:44 +00:00
'';
2022-10-01 23:39:34 +00:00
propagatedBuildInputs = with python3.pkgs; [
aiohttp
click
click-log
dateparser
jinja2
jsonpath-ng
netdisco
regex
requests
ruamel-yaml
tabulate
2018-12-12 13:00:44 +00:00
];
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
installShellCompletion --cmd hass-cli \
--bash <(_HASS_CLI_COMPLETE=bash_source $out/bin/hass-cli) \
--fish <(_HASS_CLI_COMPLETE=fish_source $out/bin/hass-cli) \
--zsh <(_HASS_CLI_COMPLETE=zsh_source $out/bin/hass-cli)
'';
nativeBuildInputs = [ installShellFiles ];
nativeCheckInputs = with python3.pkgs; [
pytestCheckHook
requests-mock
2018-12-12 13:00:44 +00:00
];
pythonImportsCheck = [ "homeassistant_cli" ];
2022-10-01 23:39:34 +00:00
meta = {
description = "Command-line tool for Home Assistant";
mainProgram = "hass-cli";
2021-06-21 05:50:40 +00:00
homepage = "https://github.com/home-assistant-ecosystem/home-assistant-cli";
changelog = "https://github.com/home-assistant-ecosystem/home-assistant-cli/releases/tag/${version}";
license = lib.licenses.asl20;
maintainers = lib.teams.home-assistant.members;
2018-12-12 13:00:44 +00:00
};
}