python3Packages.lw12: init at 0.9.2 (#436652)

This commit is contained in:
Martin Weinelt
2025-08-28 22:44:34 +02:00
committed by GitHub
3 changed files with 35 additions and 1 deletions
@@ -0,0 +1,31 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "lw12";
version = "0.9.2";
pyproject = true;
src = fetchFromGitHub {
owner = "jaypikay";
repo = "python-lw12";
tag = "v${version}";
hash = "sha256-6zZolUfs1SzCH0DT2YYuP4eXt8Hxv+TYIDgLnR51MAQ=";
};
build-system = [ setuptools ];
# Tests require hardware access
doCheck = false;
meta = {
description = "Library to control the Lagute LW-12 WiFi LED controller";
homepage = "https://github.com/jaypikay/python-lw12";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
@@ -3402,7 +3402,8 @@
];
"lw12wifi" =
ps: with ps; [
]; # missing inputs: lw12
lw12
];
"lyric" =
ps: with ps; [
aiolyric
+2
View File
@@ -8771,6 +8771,8 @@ self: super: with self; {
luxtronik = callPackage ../development/python-modules/luxtronik { };
lw12 = callPackage ../development/python-modules/lw12 { };
lxmf = callPackage ../development/python-modules/lxmf { };
lxml = callPackage ../development/python-modules/lxml { inherit (pkgs) libxml2 libxslt zlib; };