about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pixel-ring/default.nix
blob: b0a7e352732886d3497dafc6f7b257c3fbd37baa (plain) (blame)
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
{ 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 = with lib; {
    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 = licenses.gpl2Only;
    maintainers = with maintainers; [ hexa ];
  };
}