diff options
author | Sandro | 2024-04-07 19:04:37 +0200 |
---|---|---|
committer | GitHub | 2024-04-07 19:04:37 +0200 |
commit | 0681bb85ca2a58d9c81842685ab6b4fb34ecac03 (patch) | |
tree | 339fb6a06335c110cfa60b7f6a0d42feb129e820 /pkgs/applications/audio | |
parent | 7d69be0264c0d3cd68e7bd6cf9ff297897848855 (diff) | |
parent | 28788504236ade6be160758e6339ee071dc31b25 (diff) |
Merge pull request #301621 from r-ryantm/auto-update/ledfx
ledfx: 2.0.94 -> 2.0.96
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r-- | pkgs/applications/audio/ledfx/default.nix | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/pkgs/applications/audio/ledfx/default.nix b/pkgs/applications/audio/ledfx/default.nix index 62ba0f90ace9..bcbe1bc397d3 100644 --- a/pkgs/applications/audio/ledfx/default.nix +++ b/pkgs/applications/audio/ledfx/default.nix @@ -1,16 +1,17 @@ -{ lib -, fetchPypi -, python3 +{ + lib, + fetchPypi, + python3, }: python3.pkgs.buildPythonPackage rec { pname = "ledfx"; - version = "2.0.94"; + version = "2.0.96"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-l498NXt3Ib9QLTWoJcpngAwkbY6JqLbVLKhTWQye7Fs="; + hash = "sha256-nvPHAnoD5j1rneeuMufQkXj8YWXau2zJYug+Avpe87I="; }; pythonRelaxDeps = true; @@ -20,13 +21,14 @@ python3.pkgs.buildPythonPackage rec { "rpi-ws281x" ]; - nativeBuildInputs = with python3.pkgs; [ + build-system = with python3.pkgs; [ cython poetry-core - pythonRelaxDepsHook ]; - propagatedBuildInputs = with python3.pkgs; [ + nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ]; + + dependencies = with python3.pkgs; [ aiohttp aiohttp-cors aubio |