mqtt-dash/default.nix

8 lines
129 B
Nix
Raw Normal View History

2019-10-31 16:29:31 +01:00
{ python }:
with python.pkgs;
2019-10-24 21:29:54 +02:00
buildPythonPackage rec {
name = "mqtt-dash";
src = ./.;
propagatedBuildInputs = [ flask ];
}