3
0
Fork 0
forked from mirrors/nixpkgs

appdaemon: fix build

This commit is contained in:
Frederik Rietdijk 2019-08-18 11:46:49 +02:00
parent 33263a7efb
commit d92d210c84

View file

@ -58,6 +58,10 @@ in python.pkgs.buildPythonApplication rec {
# no tests implemented
doCheck = false;
postPatch = ''
substituteInPlace setup.py --replace "pyyaml==5.1" "pyyaml"
'';
meta = with lib; {
description = "Sandboxed python execution environment for writing automation apps for Home Assistant";
homepage = https://github.com/home-assistant/appdaemon;