I packed all python packages in library via propagatedBuildInputs so in derivations where i use this library in cmake configure phase i use this python packages to create test environment and as derivations have no internet connection i say to pip to use only local packages via cmake flag:
-DUSERVER_PIP_OPTIONS=–no-index
It work while i build library but need to be set in packages that use this library too.
Is there way to propagate cmake flags? smth like propagatedCmakeFlags?