mqtt-tools/default.nix

11 lines
200 B
Nix
Raw Normal View History

2019-11-25 16:59:08 +01:00
{ python3 }:
with python3.pkgs;
buildPythonPackage rec {
name = "mqtt-tools";
2019-11-25 16:59:08 +01:00
src = ./.;
2019-11-25 17:15:27 +01:00
propagatedBuildInputs = [ pyyaml paho-mqtt ];
buildInputs = [];
2019-11-25 16:59:08 +01:00
doCheck = false;
shellHook = "";
}