Fix build inputs

This commit is contained in:
0xee 2019-11-25 17:15:27 +01:00
parent 204b25cfb6
commit 59488314d9

View File

@ -3,8 +3,8 @@ with python3.pkgs;
buildPythonPackage rec {
name = "mqtt-config";
src = ./.;
propagatedBuildInputs = [];
buildInputs = [ pyyaml paho-mqtt ];
propagatedBuildInputs = [ pyyaml paho-mqtt ];
buildInputs = [];
doCheck = false;
shellHook = "";
}