lbry-android-sdk/p4a/pythonforandroidold/recipes/enaml/__init__.py
2022-12-02 15:15:34 -05:00

12 lines
395 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/{version}.zip'
patches = ['0001-Update-setup.py.patch'] # Remove PyQt dependency
depends = ['setuptools', 'atom', 'kiwisolver']
recipe = EnamlRecipe()