42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ lib, python3 }:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "homeassistant-cli";
|
|
version = "0.8.0";
|
|
|
|
src = python3.pkgs.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0qq42b2a0rlrzaxwf3zqks5gzgv0hf4pz4yjjl6ldnizw8fcj40n";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Ignore pinned versions
|
|
sed -i "s/'\(.*\)\(==\|>=\).*'/'\1'/g" setup.py
|
|
'';
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
requests netdisco click click-log tabulate jsonpath_rw jinja2 dateparser regex ruamel_yaml aiohttp
|
|
];
|
|
|
|
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"
|
|
'';
|
|
|
|
checkInputs = with python3.pkgs; [
|
|
pytest requests-mock
|
|
];
|
|
|
|
checkPhase = ''
|
|
pytest
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Command-line tool for Home Assistant";
|
|
homepage = https://github.com/home-assistant/home-assistant-cli;
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|