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.
13 lines
454 B
13 lines
454 B
from pythonforandroid.recipes.packaging import PackagingRecipe
|
|
|
|
|
|
assert PackagingRecipe._version == "21.3"
|
|
assert PackagingRecipe.depends == ["setuptools", "pyparsing", "python3"]
|
|
assert PackagingRecipe.python_depends == []
|
|
|
|
|
|
class PackagingRecipePinned(PackagingRecipe):
|
|
sha512sum = "2e3aa276a4229ac7dc0654d586799473ced9761a83aa4159660d37ae1a2a8f30e987248dd0e260e2834106b589f259a57ce9936eef0dcc3c430a99ac6b663e05"
|
|
|
|
|
|
recipe = PackagingRecipePinned()
|
|
|