nixpkgs/pkgs/applications/audio/ledfx/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
1.2 KiB
Nix
Raw Normal View History

2023-04-14 23:07:45 +00:00
{ lib
, python3
, fetchPypi
2023-04-14 23:07:45 +00:00
}:
python3.pkgs.buildPythonPackage rec {
pname = "ledfx";
2023-05-03 22:14:03 +00:00
version = "2.0.67";
2023-04-14 23:07:45 +00:00
format = "setuptools";
src = fetchPypi {
2023-04-14 23:07:45 +00:00
inherit pname version;
2023-05-03 22:14:03 +00:00
hash = "sha256-lFxAMjglQZXCySr83PtvStU6hw2ucQu+rSjIHo1yZBk=";
2023-04-14 23:07:45 +00:00
};
postPatch = ''
substituteInPlace setup.py \
--replace "'rpi-ws281x>=4.3.0; platform_system == \"Linux\"'," "" \
2023-05-03 22:14:03 +00:00
--replace '"sentry-sdk==1.14.0",' "" \
2023-04-14 23:07:45 +00:00
--replace "~=" ">="
'';
propagatedBuildInputs = with python3.pkgs; [
aiohttp
aiohttp-cors
aubio
certifi
cython
flux-led
icmplib
multidict
numpy
2023-06-30 20:11:54 +00:00
openrgb-python
2023-04-14 23:07:45 +00:00
paho-mqtt
pillow
psutil
pyserial
pystray
2023-05-03 22:14:03 +00:00
python-rtmidi
2023-04-14 23:07:45 +00:00
# rpi-ws281x # not packaged
requests
sacn
samplerate
sentry-sdk
sounddevice
uvloop
voluptuous
zeroconf
];
# has no tests
doCheck = false;
meta = with lib; {
description = "LedFx is a network based LED effect controller with support for advanced real-time audio effects";
homepage = "https://github.com/LedFx/LedFx";
changelog = "https://github.com/LedFx/LedFx/blob/${version}/CHANGELOG.rst";
license = licenses.gpl3Only;
maintainers = teams.c3d2.members;
};
}