(self, arch)
| 995 | return env |
| 996 | |
| 997 | def should_build(self, arch): |
| 998 | name = self.folder_name |
| 999 | if self.ctx.has_package(name, arch): |
| 1000 | info('Python package already exists in site-packages') |
| 1001 | return False |
| 1002 | info('{} apparently isn\'t already in site-packages'.format(name)) |
| 1003 | return True |
| 1004 | |
| 1005 | def build_arch(self, arch): |
| 1006 | '''Install the Python module by calling setup.py install with |
nothing calls this directly
no test coverage detected