rofi-rbw: add setuptools to nativeBuildInputs

This commit is contained in:
Martin Weinelt 2022-09-19 04:13:16 +02:00 committed by Sandro Jäckel
parent 2138aa977e
commit 5fe10e573a
No known key found for this signature in database
GPG Key ID: B1763F8651144063

View File

@ -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" ];