11 lines
200 B
Nix
11 lines
200 B
Nix
{ python3 }:
|
|
with python3.pkgs;
|
|
buildPythonPackage rec {
|
|
name = "mqtt-tools";
|
|
src = ./.;
|
|
propagatedBuildInputs = [ pyyaml paho-mqtt ];
|
|
buildInputs = [];
|
|
doCheck = false;
|
|
shellHook = "";
|
|
}
|