python3Packages.tiler: add setuptools to nativeBuildInputs

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

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, numpy
, tqdm
, pytestCheckHook
@ -16,6 +17,10 @@ buildPythonPackage rec {
sha256 = "sha256-2HWO/iJ9RCWNVmw2slu9F/+Mchk3evB5/F8EfbuMI/Y=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
numpy
tqdm