python311Packages.pixel-ring: init at 0.1.0

RGB LED library for ReSpeaker 4 Mic Array, ReSpeaker V2 & ReSpeaker USB
6+1 Mic Array.
This commit is contained in:
Martin Weinelt 2023-11-14 22:34:49 +01:00
parent 85b3fae171
commit 7618e17108
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,42 @@
{ 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 ];
};
}

View file

@ -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;