Skip to content

Commit ef442b9

Browse files
fixed recipe zope_interface
zope_interface was not installing "common" hierarchy because it couldn't find setuptools and was using distutils instead. This commit fix this by using hostpython own build dir, and also removed unused imports (shprint and join).
1 parent bad1f18 commit ef442b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythonforandroid/recipes/zope_interface/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
from pythonforandroid.toolchain import PythonRecipe, shprint, current_directory
2-
from os.path import join
1+
from pythonforandroid.toolchain import PythonRecipe, current_directory
32
import sh
43

54

65
class ZopeInterfaceRecipe(PythonRecipe):
6+
call_hostpython_via_targetpython = False
77
name = 'zope_interface'
88
version = '4.1.3'
99
url = 'https://pypi.python.org/packages/source/z/zope.interface/zope.interface-{version}.tar.gz'

0 commit comments

Comments
 (0)