about summary refs log tree commit diff
path: root/pkgs/applications/audio/miniplayer
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-28 03:35:25 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-28 03:35:25 +0100
commit2a1c9c5062deadc5d82755b89b2ee4d3afb7364e (patch)
treece76027c2ae0c71969b8bfd76ff9940b1d0ebeb3 /pkgs/applications/audio/miniplayer
parent92a268479041f2556e873ab4b05a5da1b6274e59 (diff)
miniplayer: fix build
Diffstat (limited to 'pkgs/applications/audio/miniplayer')
-rw-r--r--pkgs/applications/audio/miniplayer/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/applications/audio/miniplayer/default.nix b/pkgs/applications/audio/miniplayer/default.nix
index 018fd6c8b78f3..e3837baeca048 100644
--- a/pkgs/applications/audio/miniplayer/default.nix
+++ b/pkgs/applications/audio/miniplayer/default.nix
@@ -15,7 +15,11 @@ buildPythonApplication rec {
     hash = "sha256-iUUsVIDLQAiaMomfA2LvvJZ2ePhgADtC6GCwIpRC1MA=";
   };
 
-  propagatedBuildInputs = [
+  build-system = [
+    setuptools
+  ];
+
+  dependencies = [
     colorthief
     ffmpeg-python
     mpd2
@@ -25,6 +29,8 @@ buildPythonApplication rec {
     ueberzug
   ];
 
+  doCheck = false; # no tests
+
   # pythonImportsCheck is disabled because this package doesn't expose any modules.
 
   meta = with lib; {