This commit is contained in:
D. Scott Boggs 2024-06-19 19:25:17 -04:00
parent e087fe1157
commit 60cf0a0f1f
8 changed files with 93 additions and 0 deletions

14
default.nix Normal file
View file

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