lol

Merge pull request #229760 from SuperSandro2000/ledfx

ledfx: 2.0.64 -> 2.0.67

authored by

Sandro and committed by
GitHub
c11230f6 3b292735

+4 -16
+4 -16
pkgs/applications/audio/ledfx/default.nix
··· 1 1 { lib 2 - , fetchpatch 3 2 , python3 4 3 }: 5 4 6 5 python3.pkgs.buildPythonPackage rec { 7 6 pname = "ledfx"; 8 - version = "2.0.64"; 7 + version = "2.0.67"; 9 8 format = "setuptools"; 10 9 11 10 src = python3.pkgs.fetchPypi { 12 11 inherit pname version; 13 - hash = "sha256-TKRa4PcMd0Jl94XD2WubOhmsxZaUplZeWKsuKz83Rl4="; 12 + hash = "sha256-lFxAMjglQZXCySr83PtvStU6hw2ucQu+rSjIHo1yZBk="; 14 13 }; 15 14 16 - patches = [ 17 - # replace tcp-latency which is not packaged with icmplib 18 - (fetchpatch { 19 - url = "https://github.com/LedFx/LedFx/commit/98cd4256846ae3bdae7094eeacb3b02a4807dc6f.patch"; 20 - excludes = [ 21 - # only used in win.spec file which is windows specific 22 - "hiddenimports.py" 23 - ]; 24 - hash = "sha256-p9fiLdjZI5fe5Qy2xbJIAtblp/7BwUxAvwjHQy5l9nQ="; 25 - }) 26 - ]; 27 - 28 15 postPatch = '' 29 16 substituteInPlace setup.py \ 30 17 --replace '"openrgb-python~=0.2.10",' "" \ 31 - --replace '"pyupdater>=3.1.0",' "" \ 32 18 --replace "'rpi-ws281x>=4.3.0; platform_system == \"Linux\"'," "" \ 19 + --replace '"sentry-sdk==1.14.0",' "" \ 33 20 --replace "~=" ">=" 34 21 ''; 35 22 ··· 49 36 psutil 50 37 pyserial 51 38 pystray 39 + python-rtmidi 52 40 # rpi-ws281x # not packaged 53 41 requests 54 42 sacn