nixpkgs/pkgs/development/python-modules/pixel-ring/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

43 lines
867 B
Nix

{ 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 ];
};
}