nixpkgs/pkgs/servers/home-assistant/cli.nix
Robert Schütz a9bf4cea4b Revert "home-assistant-cli: use python36"
This reverts commit c3b01eed80.
2019-02-12 23:12:57 +01:00

48 lines
1.2 KiB
Nix

{ lib, python3, glibcLocales }:
python3.pkgs.buildPythonApplication rec {
pname = "homeassistant-cli";
version = "0.5.0";
src = python3.pkgs.fetchPypi {
inherit pname version;
sha256 = "4ad137d336508ab74840a34b3cc488ad884cc75285f5d7842544df1c3adacf8d";
};
postPatch = ''
# Ignore pinned versions
sed -i "s/'\(.*\)\(==\|>=\).*'/'\1'/g" setup.py
'';
nativeBuildInputs = [
glibcLocales
];
propagatedBuildInputs = with python3.pkgs; [
requests netdisco click click-log tabulate jsonpath_rw jinja2 dateparser regex ruamel_yaml aiohttp
];
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 python3.pkgs; [
pytest requests-mock
];
checkPhase = ''
pytest
'';
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 ];
};
}