nixpkgs/pkgs/servers/home-assistant/appdaemon.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
1.4 KiB
Nix
Raw Normal View History

{ lib
, python3
, fetchFromGitHub
}:
2018-02-28 01:38:11 +00:00
2021-04-18 02:09:09 +00:00
python3.pkgs.buildPythonApplication rec {
2018-02-28 01:38:11 +00:00
pname = "appdaemon";
version = "4.2.1";
format = "setuptools";
disabled = python3.pythonOlder "3.7";
2018-02-28 01:38:11 +00:00
2020-01-28 22:42:21 +00:00
src = fetchFromGitHub {
owner = "AppDaemon";
repo = "appdaemon";
rev = "refs/tags/${version}";
hash = "sha256-4sN0optkMmyWb5Cd3F7AhcXYHh7aidJE/bieYMEKgSY=";
2018-02-28 01:38:11 +00:00
};
2019-08-18 09:46:49 +00:00
postPatch = ''
# relax dependencies
2021-04-18 02:09:09 +00:00
sed -i 's/==/>=/' requirements.txt
'';
propagatedBuildInputs = with python3.pkgs; [
aiodns
aiohttp
aiohttp-jinja2
astral
2020-11-18 14:52:17 +00:00
azure-keyvault-secrets
2021-04-18 02:09:09 +00:00
azure-mgmt-compute
azure-mgmt-resource
azure-mgmt-storage
azure-storage-blob
bcrypt
faust-cchardet
2021-04-18 02:09:09 +00:00
deepdiff
feedparser
iso8601
jinja2
paho-mqtt
pid
pygments
python-dateutil
python-engineio
python-socketio
pytz
pyyaml
requests
sockjs
uvloop
voluptuous
websocket-client
2021-04-18 02:09:09 +00:00
yarl
];
# no tests implemented
checkPhase = ''
$out/bin/appdaemon -v | grep -q "${version}"
2019-08-18 09:46:49 +00:00
'';
2018-02-28 01:38:11 +00:00
meta = with lib; {
2020-12-30 20:41:06 +00:00
description = "Sandboxed Python execution environment for writing automation apps for Home Assistant";
homepage = "https://github.com/AppDaemon/appdaemon";
changelog = "https://github.com/AppDaemon/appdaemon/blob/${version}/docs/HISTORY.rst";
2018-02-28 01:38:11 +00:00
license = licenses.mit;
maintainers = teams.home-assistant.members;
2018-02-28 01:38:11 +00:00
};
}