Files
purple-electrumwallet/contrib/android/p4a_recipes/hostpython3/__init__.py
T

19 lines
594 B
Python
Raw Normal View History

2021-04-24 16:32:06 +02:00
import os
from pythonforandroid.recipes.hostpython3 import HostPython3Recipe
from pythonforandroid.util import load_source
util = load_source('util', os.path.join(os.path.dirname(os.path.dirname(__file__)), 'util.py'))
assert HostPython3Recipe.depends == []
assert HostPython3Recipe.python_depends == []
class HostPython3RecipePinned(util.InheritedRecipeMixin, HostPython3Recipe):
version = "3.8.13"
sha512sum = "e57f5f5b441e46a742b0147dd7fbfa6b52d550a86e60c9765ecc3c4690e2cdedf197e151c07cd2ea1f75ed9022a2b8ce4850c3d65916eaede1db6feed40b52f6"
2021-04-24 16:32:06 +02:00
recipe = HostPython3RecipePinned()