Add initial version

This commit is contained in:
2019-11-25 16:59:08 +01:00
commit 7d2d89aabd
4 changed files with 67 additions and 0 deletions

10
default.nix Normal file
View File

@@ -0,0 +1,10 @@
{ python3 }:
with python3.pkgs;
buildPythonPackage rec {
name = "mqtt-config";
src = ./.;
propagatedBuildInputs = [];
buildInputs = [ pyyaml paho-mqtt ];
doCheck = false;
shellHook = "";
}