Merge pull request #288 from charlesbaynham/master

Add recipe for pykka
This commit is contained in:
Gabriel Pettier 2018-06-18 16:42:47 +02:00 committed by GitHub
commit 8732aae479
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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()