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

49 lines
1.3 KiB
Nix
Raw Normal View History

# dateparser tests fail on pyton37: https://github.com/NixOS/nixpkgs/issues/52766
{ lib, python36, glibcLocales }:
2018-12-12 13:00:44 +00:00
python36.pkgs.buildPythonApplication rec {
2018-12-12 13:00:44 +00:00
pname = "homeassistant-cli";
2019-02-10 17:48:27 +00:00
version = "0.5.0";
2018-12-12 13:00:44 +00:00
src = python36.pkgs.fetchPypi {
2018-12-12 13:00:44 +00:00
inherit pname version;
2019-02-10 17:48:27 +00:00
sha256 = "4ad137d336508ab74840a34b3cc488ad884cc75285f5d7842544df1c3adacf8d";
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
'';
nativeBuildInputs = [
glibcLocales
];
propagatedBuildInputs = with python36.pkgs; [
2019-02-10 17:48:27 +00:00
requests netdisco click click-log tabulate jsonpath_rw jinja2 dateparser regex ruamel_yaml aiohttp
2018-12-12 13:00:44 +00:00
];
LC_ALL = "en_US.UTF-8";
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 python36.pkgs; [
pytest requests-mock
2018-12-12 13:00:44 +00:00
];
checkPhase = ''
pytest
2018-12-12 13:00:44 +00:00
'';
meta = with lib; {
description = "Command-line tool for Home Asssistant";
homepage = https://github.com/home-assistant/home-assistant-cli;
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}