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 { buildPythonPackage rec {
name = "mqtt-config"; name = "mqtt-config";
src = ./.; src = ./.;
propagatedBuildInputs = []; propagatedBuildInputs = [ pyyaml paho-mqtt ];
buildInputs = [ pyyaml paho-mqtt ]; buildInputs = [];
doCheck = false; doCheck = false;
shellHook = ""; shellHook = "";
} }