2017-08-13 03:24:00 +02:00
|
|
|
from pythonforandroid.recipe import CppCompiledComponentsPythonRecipe
|
|
|
|
|
2019-03-30 21:58:45 +01:00
|
|
|
|
2017-08-13 03:24:00 +02:00
|
|
|
class EnamlRecipe(CppCompiledComponentsPythonRecipe):
|
|
|
|
site_packages_name = 'enaml'
|
|
|
|
version = '0.9.8'
|
2019-03-30 21:58:45 +01:00
|
|
|
url = 'https://github.com/nucleic/enaml/archive/{version}.zip'
|
|
|
|
patches = ['0001-Update-setup.py.patch'] # Remove PyQt dependency
|
|
|
|
depends = ['setuptools', 'atom', 'kiwisolver']
|
|
|
|
|
2017-08-13 03:24:00 +02:00
|
|
|
|
|
|
|
recipe = EnamlRecipe()
|