l...@gnu.org (Ludovic Courtès) skribis: > This is because Python is not added to ‘LIBRARY_PATH’, right? > > I think this is fixed by this patch: > > --- a/guix/build-system/python.scm > +++ b/guix/build-system/python.scm > @@ -110,10 +110,11 @@ prepended to the name." > '()) > ,@inputs > > + ("python" ,python) > + > ;; Keep the standard inputs of 'gnu-build-system'. > ,@(standard-packages))) > - (build-inputs `(("python" ,python) > - ,@native-inputs)) > + (build-inputs native-inputs) > (outputs outputs) > (build python-build) > (arguments (strip-keyword-arguments private-keywords arguments)))))
FTR, this patch isn’t needed at all. What mattered here was to fix ‘python-wrapper’ to have a lib/ sub-directory, which Andreas has just done in ‘wip-python’. Ludo’.