Merge pull request #267534 from mweinelt/pixel-ring-0.1.0

python311Packages.pixel-ring: init at 0.1.0
This commit is contained in:
OTABI Tomoya 2023-11-17 00:15:53 +09:00 committed by GitHub
commit 05882d1dca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;