mqtt-dash/default.nix

8 lines
148 B
Nix
Raw Normal View History

2019-10-24 20:29:54 +01:00
with import <nixpkgs> {}; with python3Packages;
buildPythonPackage rec {
name = "mqtt-dash";
src = ./.;
propagatedBuildInputs = [ flask ];
}