From 4bd294d3a9ce9095ebcc8456f4eec5533aa9f3c8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 2 Oct 2022 01:39:34 +0200 Subject: home-assistant-cli: 0.9.4 -> 0.9.5 --- pkgs/servers/home-assistant/cli.nix | 44 +++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 24 deletions(-) diff --git a/pkgs/servers/home-assistant/cli.nix b/pkgs/servers/home-assistant/cli.nix index 18bc9c76da0..3ef20b8b876 100644 --- a/pkgs/servers/home-assistant/cli.nix +++ b/pkgs/servers/home-assistant/cli.nix @@ -1,28 +1,18 @@ { lib +, fetchFromGitHub , python3 }: -let - 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 { +python3.pkgs.buildPythonApplication rec { pname = "homeassistant-cli"; - version = "0.9.4"; - - src = python3.pkgs.fetchPypi { - inherit pname version; - sha256 = "03kiyqpp3zf8rg30d12h4fapihh0rqwpv5p8jfxb3iq0chfmjx2f"; + version = "0.9.5"; + format = "setuptools"; + + src = fetchFromGitHub { + owner = "home-assistant-ecosystem"; + repo = "home-assistant-cli"; + rev = version; + hash = "sha256-gtyW5FnpzUv/3TuBZ0LJXPxeQAkl7bf8M+K6RNATVm0="; }; postPatch = '' @@ -30,7 +20,7 @@ python.pkgs.buildPythonApplication rec { sed -i "s/'\(.*\)\(==\|>=\).*'/'\1'/g" setup.py ''; - propagatedBuildInputs = with python.pkgs; [ + propagatedBuildInputs = with python3.pkgs; [ aiohttp click click-log @@ -44,19 +34,25 @@ python.pkgs.buildPythonApplication rec { tabulate ]; - # Completion needs to be ported to work with click > 8.0 - # https://github.com/home-assistant-ecosystem/home-assistant-cli/issues/367 + # TODO: Completion needs to be adapted after support for latest click was added + # $ 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 = '' # 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 python.pkgs; [ + checkInputs = with python3.pkgs; [ pytestCheckHook requests-mock ]; + pythonImportsCheck = [ + "homeassistant_cli" + ]; + meta = with lib; { description = "Command-line tool for Home Assistant"; homepage = "https://github.com/home-assistant-ecosystem/home-assistant-cli"; -- cgit 1.4.1