about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-01-15 00:11:22 +0100
committerGitHub <noreply@github.com>2024-01-15 00:11:22 +0100
commit5614bd58587f1337aca11d7b2bdfcca4ca44fccc (patch)
tree2a5d1a6963acf39662d2b2bbe7d104927efc46c9
parent4400b6335f925b3efea6155d205550640f5aa427 (diff)
parentc573c6a44c07c4cbbd371321e5640a819fd2a2c5 (diff)
downloadnixlib-5614bd58587f1337aca11d7b2bdfcca4ca44fccc.tar
nixlib-5614bd58587f1337aca11d7b2bdfcca4ca44fccc.tar.gz
nixlib-5614bd58587f1337aca11d7b2bdfcca4ca44fccc.tar.bz2
nixlib-5614bd58587f1337aca11d7b2bdfcca4ca44fccc.tar.lz
nixlib-5614bd58587f1337aca11d7b2bdfcca4ca44fccc.tar.xz
nixlib-5614bd58587f1337aca11d7b2bdfcca4ca44fccc.tar.zst
nixlib-5614bd58587f1337aca11d7b2bdfcca4ca44fccc.zip
Merge pull request #280698 from fabaff/ledfx-fix
ledfx: adjust build system
-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 a1a4cf3b33c6..40a684631265 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; {