lights-web/default.nix

13 lines
236 B
Nix
Raw Permalink Normal View History

2022-02-14 21:34:37 +00:00
{ gunicorn, flask, paho-mqtt, pyyaml, setuptools, buildPythonPackage }:
2020-11-24 12:41:48 +00:00
2022-02-14 21:34:37 +00:00
buildPythonPackage {
2020-11-24 12:41:48 +00:00
pname = "lights-web";
version = "0.4.0";
src = ./.;
2022-02-14 21:34:37 +00:00
propagatedBuildInputs = [
2020-11-27 16:26:39 +00:00
gunicorn flask paho-mqtt pyyaml setuptools
2020-11-24 12:41:48 +00:00
];
}