mqtt-dash/default.nix

9 lines
150 B
Nix
Raw Normal View History

2019-10-31 18:17:06 +01:00
{ python3 }:
with python3.pkgs;
buildPythonPackage rec {
2019-10-24 21:29:54 +02:00
name = "mqtt-dash";
src = ./.;
propagatedBuildInputs = [ flask ];
2019-10-31 17:24:26 +01:00
doCheck = false;
2019-10-24 21:29:54 +02:00
}