(self, arch)
| 1039 | return join(dirname(self.real_hostpython_location), 'Lib', 'site-packages') |
| 1040 | |
| 1041 | def install_hostpython_package(self, arch): |
| 1042 | env = self.get_hostrecipe_env(arch) |
| 1043 | shprint(self._host_recipe.pip, 'install', '.', |
| 1044 | '--compile', |
| 1045 | '--root={}'.format(self._host_recipe.site_root), |
| 1046 | _env=env, *self.setup_extra_args) |
| 1047 | |
| 1048 | @property |
| 1049 | def python_major_minor_version(self): |
no test coverage detected