appdaemon: 4.4.2 -> 4.5.11 (#428339)

authored by Martin Weinelt and committed by GitHub 3683d033 f7f3449d

+7 -9
+7 -9
pkgs/servers/home-assistant/appdaemon.nix
··· 1 1 { 2 2 lib, 3 - python3, 3 + python3Packages, 4 4 fetchFromGitHub, 5 5 }: 6 6 7 - python3.pkgs.buildPythonApplication rec { 7 + python3Packages.buildPythonApplication rec { 8 8 pname = "appdaemon"; 9 - version = "4.4.2"; 9 + version = "4.5.11"; 10 10 pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "AppDaemon"; 14 14 repo = "appdaemon"; 15 15 rev = "refs/tags/${version}"; 16 - hash = "sha256-T3InE4J4qYeFJTq6nrW8y5BOA7Z0n3t9eVpl641r/xk="; 16 + hash = "sha256-1wnAniw7fdyfH6QeFjdIAxX5mU92ZZxLLJ/QkKge1eY="; 17 17 }; 18 18 19 19 pythonRelaxDeps = true; 20 20 21 - nativeBuildInputs = with python3.pkgs; [ 22 - setuptools 23 - ]; 21 + build-system = [ python3Packages.setuptools ]; 24 22 25 - propagatedBuildInputs = with python3.pkgs; [ 23 + dependencies = with python3Packages; [ 26 24 aiohttp 27 25 aiohttp-jinja2 28 26 astral ··· 32 30 iso8601 33 31 paho-mqtt 34 32 pid 33 + pydantic 35 34 python-dateutil 36 35 python-socketio 37 36 pytz ··· 39 38 requests 40 39 sockjs 41 40 uvloop 42 - websocket-client 43 41 tomli 44 42 tomli-w 45 43 ];