mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
Merge pull request #267534 from mweinelt/pixel-ring-0.1.0
python311Packages.pixel-ring: init at 0.1.0
This commit is contained in:
commit
05882d1dca
42
pkgs/development/python-modules/pixel-ring/default.nix
Normal file
42
pkgs/development/python-modules/pixel-ring/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user