colortunnel/default.nix

15 lines
221 B
Nix
Raw Permalink Normal View History

2024-06-19 23:25:17 +00:00
{
python3, ...
}: python3.pkgs.buildPythonApplication rec {
pname = "huecontrol";
version = "0.0.0";
format = "setuptools";
src = ./.;
propagatedBuildInputs = with python3.pkgs; [
bleak
rgbxy
];
}