mqtt-dash/default.nix
0xee 75a07bac21 Make project fit for deployment
* Read config from file - see config.py.example
* Split HTML/JS/CSS, move static stuff to mqtt_dash/static/
* Move widget definitions to mqtt_dash.widgets
2019-10-31 20:59:07 +01:00

9 lines
150 B
Nix

{ python3 }:
with python3.pkgs;
buildPythonPackage rec {
name = "mqtt-dash";
src = ./.;
propagatedBuildInputs = [ flask ];
doCheck = false;
}