Unverified Commit 7618e171 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python311Packages.pixel-ring: init at 0.1.0

RGB LED library for ReSpeaker 4 Mic Array, ReSpeaker V2 & ReSpeaker USB
6+1 Mic Array.
parent 85b3fae1
Loading
Loading
Loading
Loading
+42 −0
Original line number Diff line number Diff line
{ 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";
    homepage = "https://github.com/respeaker/pixel_ring/tree/master";
    license = licenses.gpl2Only;
    maintainers = with maintainers; [ hexa ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -9112,6 +9112,8 @@ self: super: with self; {
  pixelmatch = callPackage ../development/python-modules/pixelmatch { };
  pixel-ring = callPackage ../development/python-modules/pixel-ring { };
  pjsua2 = (toPythonModule (pkgs.pjsip.override {
    pythonSupport = true;
    python3 = self.python;