mqtt-dash/default.nix

9 lines
150 B
Nix
Raw Normal View History

2019-10-31 17:17:06 +00:00
{ python3 }:
with python3.pkgs;
buildPythonPackage 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
}