14 lines
262 B
Python
14 lines
262 B
Python
|
from toolchain import PythonRecipe
|
||
|
|
||
|
|
||
|
class PykkaRecipe(PythonRecipe):
|
||
|
version = '1.2.1'
|
||
|
url = 'https://github.com/jodal/pykka/archive/v{version}.zip'
|
||
|
|
||
|
depends = ['python', 'host_setuptools']
|
||
|
|
||
|
site_packages_name = 'pykka'
|
||
|
|
||
|
|
||
|
recipe = PykkaRecipe()
|