Revert "home-assistant-cli: use python36"

This reverts commit c3b01eed801ff4eb74a8c2637866d16ee26db2c7.
This commit is contained in:
Robert Schütz 2019-02-12 23:08:53 +01:00
parent 9fe2447dec
commit a9bf4cea4b

View File

@ -1,11 +1,10 @@
# dateparser tests fail on pyton37: https://github.com/NixOS/nixpkgs/issues/52766 { lib, python3, glibcLocales }:
{ lib, python36, glibcLocales }:
python36.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "homeassistant-cli"; pname = "homeassistant-cli";
version = "0.5.0"; version = "0.5.0";
src = python36.pkgs.fetchPypi { src = python3.pkgs.fetchPypi {
inherit pname version; inherit pname version;
sha256 = "4ad137d336508ab74840a34b3cc488ad884cc75285f5d7842544df1c3adacf8d"; sha256 = "4ad137d336508ab74840a34b3cc488ad884cc75285f5d7842544df1c3adacf8d";
}; };
@ -19,7 +18,7 @@ python36.pkgs.buildPythonApplication rec {
glibcLocales glibcLocales
]; ];
propagatedBuildInputs = with python36.pkgs; [ propagatedBuildInputs = with python3.pkgs; [
requests netdisco click click-log tabulate jsonpath_rw jinja2 dateparser regex ruamel_yaml aiohttp requests netdisco click click-log tabulate jsonpath_rw jinja2 dateparser regex ruamel_yaml aiohttp
]; ];
@ -31,7 +30,7 @@ python36.pkgs.buildPythonApplication rec {
$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 python36.pkgs; [ checkInputs = with python3.pkgs; [
pytest requests-mock pytest requests-mock
]; ];