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.7 KiB
Nix
Raw Normal View History

{ lib
2022-10-01 23:39:34 +00:00
, fetchFromGitHub
, python3
}:
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
];
2022-10-01 23:39:34 +00:00
# TODO: Completion needs to be adapted after support for latest click was added
# $ source <(_HASS_CLI_COMPLETE=bash_source hass-cli) # for bash
# $ source <(_HASS_CLI_COMPLETE=zsh_source hass-cli) # for zsh
# $ eval (_HASS_CLI_COMPLETE=fish_source hass-cli) # for fish
2021-06-21 05:50:40 +00:00
#postInstall = ''
# mkdir -p "$out/share/bash-completion/completions" "$out/share/zsh/site-functions"
# $out/bin/hass-cli completion bash > "$out/share/bash-completion/completions/hass-cli"
# $out/bin/hass-cli completion zsh > "$out/share/zsh/site-functions/_hass-cli"
#'';
nativeCheckInputs = with python3.pkgs; [
pytestCheckHook
requests-mock
2018-12-12 13:00:44 +00:00
];
2022-10-01 23:39:34 +00:00
pythonImportsCheck = [
"homeassistant_cli"
];
2018-12-12 13:00:44 +00:00
meta = with lib; {
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}";
2018-12-12 13:00:44 +00:00
license = licenses.asl20;
maintainers = teams.home-assistant.members;
2018-12-12 13:00:44 +00:00
};
}