From 85e52f926696907e7ac283713083f5ee97a66436 Mon Sep 17 00:00:00 2001 From: Johannes Habel Date: Sat, 27 Jun 2026 20:40:50 +0200 Subject: [PATCH] - Add recipe for selectolax --- pythonforandroid/recipes/selectolax/__init__.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 pythonforandroid/recipes/selectolax/__init__.py diff --git a/pythonforandroid/recipes/selectolax/__init__.py b/pythonforandroid/recipes/selectolax/__init__.py new file mode 100644 index 000000000..1188e7247 --- /dev/null +++ b/pythonforandroid/recipes/selectolax/__init__.py @@ -0,0 +1,10 @@ +from pythonforandroid.recipe import CythonRecipe + + +class SelectolaxRecipe(CythonRecipe): + version = '0.4.10' + url = 'https://pypi.python.org/packages/source/s/selectolax/selectolax-{version}.tar.gz' + depends = ['setuptools'] + + +recipe = SelectolaxRecipe() \ No newline at end of file