mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
939e3813d0
For adding modules, trytond uses entry-points, anyhow relying on the modules being named "trytond.modules.xxx" and being placed in the same filesystem path as "trytond.modules". The package "trytond.modules" is not a namespace module, anyhow trytond modules must be sub-modules of "trytond.modules". This works well if all packages are installed into the same filesystem path "…/trytond/modules": The Python importer will find all sub_modules at this place. Anyhow, in Guix, modules don't share the same filesystem path and the Python importer will not find them. Solution is to add all trytond module's locations to "trytond.modules._path__". This will make "trytond.module" behave much like a namespace module and the importer pick up the module. * gnu/packages/patches/trytond-add-egg-modules-to-path.patch: New file. * gnu/packages/tryton.scm (trytond): Use it. * gnu/local.mk (dist_patch_DATA): Add it
22 lines
885 B
Diff
22 lines
885 B
Diff
Work around trytond.module not being a real namespace module.
|
|
|
|
Solution is to add all trytond module's locations to
|
|
trytond.modules._path__. This will make trytond.module behave much
|
|
like a namespace module.
|
|
Adding to __path__ is done in update_egg_modules() to ensure __path__
|
|
is updated whenever the list of egg modules is updated.
|
|
|
|
*** a/trytond/modules/__init__.py 1970-01-01 01:00:01.000000000 +0100
|
|
--- b/trytond/modules/__init__.py 2021-12-02 18:12:15.385101986 +0100
|
|
***************
|
|
*** 38,43 ****
|
|
--- 38,46 ----
|
|
import pkg_resources
|
|
for ep in pkg_resources.iter_entry_points('trytond.modules'):
|
|
EGG_MODULES[ep.name] = ep
|
|
+ path = os.path.join(ep.dist.location, 'trytond', 'modules')
|
|
+ if not path in __path__ and os.path.isdir(path):
|
|
+ __path__.append(path)
|
|
except ImportError:
|
|
pass
|
|
|