about summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-01-13 10:41:23 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2024-01-13 10:41:23 +0100
commitc573c6a44c07c4cbbd371321e5640a819fd2a2c5 (patch)
tree347d4514d6cfdf6b8cd0da2b51b73b0ad041788b /pkgs/applications/audio
parentab59bebb8853dc1e36ac18154c7819ada2aa1b53 (diff)
ledfx: adjust build system
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/ledfx/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/audio/ledfx/default.nix b/pkgs/applications/audio/ledfx/default.nix
index a1a4cf3b33c6f..40a684631265c 100644
--- a/pkgs/applications/audio/ledfx/default.nix
+++ b/pkgs/applications/audio/ledfx/default.nix
@@ -21,7 +21,7 @@ python3.pkgs.buildPythonPackage rec {
   '';
 
   nativeBuildInputs = with python3.pkgs; [
-    poetry-core
+    setuptools
   ];
 
   propagatedBuildInputs = with python3.pkgs; [
@@ -50,13 +50,14 @@ python3.pkgs.buildPythonPackage rec {
     sacn
     samplerate
     sentry-sdk
+    setuptools
     sounddevice
     uvloop
     voluptuous
     zeroconf
   ];
 
-  # has no tests
+  # Project has no tests
   doCheck = false;
 
   meta = with lib; {