Merge pull request #194002 from fabaff/homeassistant-cli-bump
home-assistant-cli: 0.9.4 -> 0.9.5
This commit is contained in:
commit
8be0bb7e31
1 changed files with 19 additions and 23 deletions
|
@ -1,28 +1,18 @@
|
||||||
{ lib
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
, python3
|
, python3
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
python3.pkgs.buildPythonApplication rec {
|
||||||
python = python3.override {
|
|
||||||
packageOverrides = self: super: {
|
|
||||||
click = super.click.overrideAttrs (oldAttrs: rec {
|
|
||||||
version = "8.0.4";
|
|
||||||
src = oldAttrs.src.override {
|
|
||||||
inherit version;
|
|
||||||
sha256 = "sha256-hFjXsSh8X7EoyQ4jOBz5nc3nS+r2x/9jhM6E1v4JCts=";
|
|
||||||
};
|
|
||||||
});
|
|
||||||
};
|
|
||||||
};
|
|
||||||
in
|
|
||||||
|
|
||||||
python.pkgs.buildPythonApplication rec {
|
|
||||||
pname = "homeassistant-cli";
|
pname = "homeassistant-cli";
|
||||||
version = "0.9.4";
|
version = "0.9.5";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
src = python3.pkgs.fetchPypi {
|
src = fetchFromGitHub {
|
||||||
inherit pname version;
|
owner = "home-assistant-ecosystem";
|
||||||
sha256 = "03kiyqpp3zf8rg30d12h4fapihh0rqwpv5p8jfxb3iq0chfmjx2f";
|
repo = "home-assistant-cli";
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-gtyW5FnpzUv/3TuBZ0LJXPxeQAkl7bf8M+K6RNATVm0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
@ -30,7 +20,7 @@ python.pkgs.buildPythonApplication rec {
|
||||||
sed -i "s/'\(.*\)\(==\|>=\).*'/'\1'/g" setup.py
|
sed -i "s/'\(.*\)\(==\|>=\).*'/'\1'/g" setup.py
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = with python.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
aiohttp
|
aiohttp
|
||||||
click
|
click
|
||||||
click-log
|
click-log
|
||||||
|
@ -44,19 +34,25 @@ python.pkgs.buildPythonApplication rec {
|
||||||
tabulate
|
tabulate
|
||||||
];
|
];
|
||||||
|
|
||||||
# Completion needs to be ported to work with click > 8.0
|
# TODO: Completion needs to be adapted after support for latest click was added
|
||||||
# https://github.com/home-assistant-ecosystem/home-assistant-cli/issues/367
|
# $ 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
|
||||||
#postInstall = ''
|
#postInstall = ''
|
||||||
# mkdir -p "$out/share/bash-completion/completions" "$out/share/zsh/site-functions"
|
# 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 bash > "$out/share/bash-completion/completions/hass-cli"
|
||||||
# $out/bin/hass-cli completion zsh > "$out/share/zsh/site-functions/_hass-cli"
|
# $out/bin/hass-cli completion zsh > "$out/share/zsh/site-functions/_hass-cli"
|
||||||
#'';
|
#'';
|
||||||
|
|
||||||
checkInputs = with python.pkgs; [
|
checkInputs = with python3.pkgs; [
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
requests-mock
|
requests-mock
|
||||||
];
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"homeassistant_cli"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Command-line tool for Home Assistant";
|
description = "Command-line tool for Home Assistant";
|
||||||
homepage = "https://github.com/home-assistant-ecosystem/home-assistant-cli";
|
homepage = "https://github.com/home-assistant-ecosystem/home-assistant-cli";
|
||||||
|
|
Loading…
Reference in a new issue