blob: a679fb1b1bde7e49f2a8e0530fa198d86af0d294 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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 ];
};
}
|