lbry-android-sdk/p4a/pythonforandroidold/recipes/enaml/__init__.py

13 lines
395 B
Python
Raw Normal View History

2022-12-02 21:15:34 +01:00
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()