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 KiwiSolverRecipe(CppCompiledComponentsPythonRecipe):
|
|
|
|
site_packages_name = 'kiwisolver'
|
2022-12-02 21:15:34 +01:00
|
|
|
version = '1.3.2'
|
|
|
|
url = 'https://github.com/nucleic/kiwi/archive/{version}.zip'
|
|
|
|
depends = ['cppy']
|
2019-03-30 21:58:45 +01:00
|
|
|
|
|
|
|
|
2017-08-13 03:24:00 +02:00
|
|
|
recipe = KiwiSolverRecipe()
|