pass2csv: add setuptools to nativeBuildInputs

This commit is contained in:
Martin Weinelt 2022-09-19 04:01:18 +02:00 committed by Sandro Jäckel
parent 689dc26331
commit 532dc14743
No known key found for this signature in database
GPG Key ID: B1763F8651144063

View File

@ -2,6 +2,7 @@
, fetchPypi
, lib
, python-gnupg
, setuptools
}:
buildPythonApplication rec {
@ -14,6 +15,10 @@ buildPythonApplication rec {
sha256 = "03a11bd0b0905737f4adb21d87aa1653d84cc1d9b5dcfdfb8a29092245d65db8";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
python-gnupg
];