python310Packages.setuptools-scm: fix cross compile of dependents

Packages depending on setuptools-scm need the setuptools module at
build time. Add setuptools to the propagatedBuildInputs so this is
guaranteed. This fixes cross compile of the dependent packages.
This commit is contained in:
squalus 2022-06-30 09:24:58 -07:00
parent dcbdbb9800
commit 77e6eda9b2

View file

@ -3,6 +3,7 @@
, fetchPypi , fetchPypi
, packaging , packaging
, tomli , tomli
, setuptools
, lib , lib
}: }:
@ -19,6 +20,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
packaging packaging
tomli tomli
setuptools
]; ];
pythonImportsCheck = [ pythonImportsCheck = [