python310Packages.fs: propagate setuptools

fixes pkgsCross.aarch64-multiplatform.python310Packages.statmake

> ERROR: Could not find a version that satisfies the requirement setuptools (from fs) (from versions: none)
> ERROR: No matching distribution found for setuptools
This commit is contained in:
Artturin 2022-08-13 20:26:19 +03:00
parent 9c7c0650c5
commit 9f7c464ec3

View File

@ -2,6 +2,7 @@
, glibcLocales
, buildPythonPackage
, fetchPypi
, setuptools
, six
, appdirs
, scandir ? null
@ -32,7 +33,7 @@ buildPythonPackage rec {
# strong cycle with paramaterized
doCheck = false;
checkInputs = [ pyftpdlib mock psutil pytestCheckHook ];
propagatedBuildInputs = [ six appdirs pytz ]
propagatedBuildInputs = [ six appdirs pytz setuptools ]
++ lib.optionals (!isPy3k) [ backports_os ]
++ lib.optionals (!pythonAtLeast "3.6") [ typing ]
++ lib.optionals (!pythonAtLeast "3.5") [ scandir ]