Fix build inputs

master
0xee 2019-11-25 17:15:27 +01:00
parent 204b25cfb6
commit 59488314d9
1 changed files with 2 additions and 2 deletions

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 = "";
}