You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
346 B
14 lines
346 B
from pythonforandroid.recipe import PythonRecipe |
|
|
|
|
|
assert PythonRecipe.depends == ['python3'] |
|
assert PythonRecipe.python_depends == [] |
|
|
|
|
|
class PlyerRecipePinned(PythonRecipe): |
|
version = "5262087c85b2c82c69e702fe944069f1d8465fdf" |
|
url = "git+https://github.com/SomberNight/plyer" |
|
depends = ["setuptools"] |
|
|
|
|
|
recipe = PlyerRecipePinned()
|
|
|