about summary refs log tree commit diff
path: root/pkgs/applications/misc/rofi-rbw
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-09-19 04:13:16 +0200
committerSandro Jäckel <sandro.jaeckel@sap.com>2022-09-19 16:06:11 +0200
commit5fe10e573a3303b22f9ff02937c290a84fcc2bef (patch)
tree39e5749f1e1b0cf1733e1c720b8faded63d68467 /pkgs/applications/misc/rofi-rbw
parent2138aa977ed2313acbd10285dce6551f5628ecf6 (diff)
rofi-rbw: add setuptools to nativeBuildInputs
Diffstat (limited to 'pkgs/applications/misc/rofi-rbw')
-rw-r--r--pkgs/applications/misc/rofi-rbw/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/applications/misc/rofi-rbw/default.nix b/pkgs/applications/misc/rofi-rbw/default.nix
index a02d486ca9e57..28602cf0240e9 100644
--- a/pkgs/applications/misc/rofi-rbw/default.nix
+++ b/pkgs/applications/misc/rofi-rbw/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildPythonApplication, fetchFromGitHub, configargparse }:
+{ lib, buildPythonApplication, fetchFromGitHub, configargparse, setuptools }:
 
 buildPythonApplication rec {
   pname = "rofi-rbw";
@@ -12,6 +12,10 @@ buildPythonApplication rec {
     hash = "sha256-YDL0pMl3BX59kzjuykn0lQHu2RMvPhsBrlSiqdcZAXs=";
   };
 
+  nativeBuildInputs = [
+    setuptools
+  ];
+
   propagatedBuildInputs = [ configargparse ];
 
   pythonImportsCheck = [ "rofi_rbw" ];