mqtt-dash/default.nix

9 lines
161 B
Nix
Raw Permalink 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 = ./.;
2022-02-20 21:37:42 +01:00
propagatedBuildInputs = [ flask setuptools ];
2019-10-31 17:24:26 +01:00
doCheck = false;
2019-10-24 21:29:54 +02:00
}