2024-01-06 01:19:35 +01:00
|
|
|
# SPDX-FileCopyrightText: 2021 Simon Bruder <simon@sbruder.de>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
2021-01-31 19:47:54 +01:00
|
|
|
{ lib, buildPythonApplication, python3Packages }:
|
|
|
|
buildPythonApplication rec {
|
|
|
|
name = "wordclock-dimmer";
|
|
|
|
|
|
|
|
src = ./wordclock-dimmer.py;
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
astral
|
|
|
|
paho-mqtt
|
|
|
|
];
|
|
|
|
|
|
|
|
dontUnpack = true;
|
|
|
|
format = "other";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -D $src $out/bin/wordclock-dimmer
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta.license = lib.licenses.mit;
|
|
|
|
}
|