Add recipe for pykka

This commit is contained in:
Charles Baynham 2018-06-14 14:44:28 +01:00
parent 822c712956
commit 2674fc4ac0

13
recipes/pykka/__init__.py Normal file
View file

@ -0,0 +1,13 @@
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()