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