2021-04-12 15:41:31 +01:00
|
|
|
{ lib
|
|
|
|
, python3
|
|
|
|
}:
|
2018-12-12 13:00:44 +00:00
|
|
|
|
2019-02-12 22:08:53 +00:00
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2018-12-12 13:00:44 +00:00
|
|
|
pname = "homeassistant-cli";
|
2021-06-21 06:50:40 +01:00
|
|
|
version = "0.9.4";
|
2018-12-12 13:00:44 +00:00
|
|
|
|
2019-02-12 22:08:53 +00:00
|
|
|
src = python3.pkgs.fetchPypi {
|
2018-12-12 13:00:44 +00:00
|
|
|
inherit pname version;
|
2021-06-21 06:50:40 +01:00
|
|
|
sha256 = "03kiyqpp3zf8rg30d12h4fapihh0rqwpv5p8jfxb3iq0chfmjx2f";
|
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
|
|
|
'';
|
|
|
|
|
2019-02-12 22:08:53 +00:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
2021-04-12 15:41:31 +01:00
|
|
|
aiohttp
|
|
|
|
click
|
|
|
|
click-log
|
|
|
|
dateparser
|
|
|
|
jinja2
|
|
|
|
jsonpath-ng
|
|
|
|
netdisco
|
|
|
|
regex
|
|
|
|
requests
|
|
|
|
ruamel-yaml
|
|
|
|
tabulate
|
2018-12-12 13:00:44 +00:00
|
|
|
];
|
|
|
|
|
2021-06-21 06:50:40 +01:00
|
|
|
# Completion needs to be ported to work with click > 8.0
|
|
|
|
# https://github.com/home-assistant-ecosystem/home-assistant-cli/issues/367
|
|
|
|
#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"
|
|
|
|
#'';
|
2019-02-06 13:42:59 +00:00
|
|
|
|
2019-02-12 22:08:53 +00:00
|
|
|
checkInputs = with python3.pkgs; [
|
2021-04-12 15:41:31 +01:00
|
|
|
pytestCheckHook
|
|
|
|
requests-mock
|
2018-12-12 13:00:44 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2020-01-09 10:45:46 +00:00
|
|
|
description = "Command-line tool for Home Assistant";
|
2021-06-21 06:50:40 +01:00
|
|
|
homepage = "https://github.com/home-assistant-ecosystem/home-assistant-cli";
|
2021-04-12 15:41:31 +01:00
|
|
|
changelog = "https://github.com/home-assistant-ecosystem/home-assistant-cli/releases/tag/${version}";
|
2018-12-12 13:00:44 +00:00
|
|
|
license = licenses.asl20;
|
2021-04-06 00:16:25 +01:00
|
|
|
maintainers = teams.home-assistant.members;
|
2018-12-12 13:00:44 +00:00
|
|
|
};
|
|
|
|
}
|