mqtt-dash/default.nix

9 lines
152 B
Nix
Raw Normal View History

2019-10-31 15:29:31 +00:00
{ python }:
with python.pkgs;
2019-10-31 16:24:26 +00:00
buildPythonApplication rec {
2019-10-24 20:29:54 +01:00
name = "mqtt-dash";
src = ./.;
propagatedBuildInputs = [ flask ];
2019-10-31 16:24:26 +00:00
doCheck = false;
2019-10-24 20:29:54 +01:00
}