blob: 0a6a3f19c2d4c044ff663d0178d01393cca80095 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
wheel,
pyusb,
spidev,
}:
buildPythonPackage rec {
pname = "pixel-ring";
version = "0.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "respeaker";
repo = "pixel_ring";
rev = version;
hash = "sha256-J9kScjD6Xon0YWGxFU881bIbjmDpY7cnWzJ8G0SOKaw=";
};
nativeBuildInputs = [
setuptools
wheel
];
propagatedBuildInputs = [
pyusb
spidev
];
dontUsePythonImportsCheck = true; # requires SPI access
doCheck = false; # no tests
meta = {
description = "RGB LED library for ReSpeaker 4 Mic Array, ReSpeaker V2 & ReSpeaker USB 6+1 Mic Array";
mainProgram = "pixel_ring_check";
homepage = "https://github.com/respeaker/pixel_ring/tree/master";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ hexa ];
};
}
|