8 lines
148 B
Nix
8 lines
148 B
Nix
|
with import <nixpkgs> {}; with python3Packages;
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
name = "mqtt-dash";
|
||
|
src = ./.;
|
||
|
propagatedBuildInputs = [ flask ];
|
||
|
}
|