about summary refs log tree commit diff
path: root/pkgs/applications/audio/ledfx
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-11-25 00:25:58 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2023-11-25 00:25:58 +0100
commit6c79332fb82683cf72bb9a7d4cb4026bf9ea1f3c (patch)
tree6954f3d20069ad33cc118ac4d18a35fc0fcc6d18 /pkgs/applications/audio/ledfx
parenta6767abaa12cbd7a4fdb4ff595aa74012eff7d46 (diff)
ledfx: refactor
Diffstat (limited to 'pkgs/applications/audio/ledfx')
-rw-r--r--pkgs/applications/audio/ledfx/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/applications/audio/ledfx/default.nix b/pkgs/applications/audio/ledfx/default.nix
index 0e9494e76c728..54563b207f054 100644
--- a/pkgs/applications/audio/ledfx/default.nix
+++ b/pkgs/applications/audio/ledfx/default.nix
@@ -6,7 +6,7 @@
 python3.pkgs.buildPythonPackage rec {
   pname = "ledfx";
   version = "2.0.80";
-  format = "setuptools";
+  pyproject= true;
 
   src = fetchPypi {
     inherit pname version;
@@ -20,6 +20,10 @@ python3.pkgs.buildPythonPackage rec {
       --replace "~=" ">="
   '';
 
+  nativeBuildInputs = with python3.pkgs; [
+    poetry-core
+  ];
+
   propagatedBuildInputs = with python3.pkgs; [
     aiohttp
     aiohttp-cors