lbry-android/p4a/pythonforandroid/recipes/enaml/__init__.py
Akinwale Ariwodola 744cfaebc2 Initial commit
2017-08-13 02:24:00 +01:00

10 lines
397 B
Python

from pythonforandroid.recipe import CppCompiledComponentsPythonRecipe
class EnamlRecipe(CppCompiledComponentsPythonRecipe):
site_packages_name = 'enaml'
version = '0.9.8'
url = 'https://github.com/nucleic/enaml/archive/master.zip'
patches = ['0001-Update-setup.py.patch'] # Remove PyQt dependency
depends = ['python2','setuptools','atom','kiwisolver']
recipe = EnamlRecipe()