0xee
75a07bac21
* 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
9 lines
150 B
Nix
9 lines
150 B
Nix
{ python3 }:
|
|
with python3.pkgs;
|
|
buildPythonPackage rec {
|
|
name = "mqtt-dash";
|
|
src = ./.;
|
|
propagatedBuildInputs = [ flask ];
|
|
doCheck = false;
|
|
}
|