colortunnel/default.nix
2024-06-19 19:25:17 -04:00

15 lines
221 B
Nix

{
python3, ...
}: python3.pkgs.buildPythonApplication rec {
pname = "huecontrol";
version = "0.0.0";
format = "setuptools";
src = ./.;
propagatedBuildInputs = with python3.pkgs; [
bleak
rgbxy
];
}