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