rofimoji: add setuptools to nativeBuildInputs

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

View File

@ -1,6 +1,7 @@
{ buildPythonApplication
, fetchFromGitHub
, lib
, python3
, waylandSupport ? true
, x11Support ? true
@ -25,6 +26,10 @@ buildPythonApplication rec {
sha256 = "sha256-6W/59DjxrgejHSkNxpruDAws812Vjyf+GePDPbXzVbc=";
};
nativeBuildInputs = [
python3.pkgs.setuptools
];
# `rofi` and the `waylandSupport` and `x11Support` dependencies
# contain binaries needed at runtime.
propagatedBuildInputs = with lib; [ configargparse rofi ]