diff --git a/recipes/pykka/__init__.py b/recipes/pykka/__init__.py new file mode 100644 index 0000000..b0b66e2 --- /dev/null +++ b/recipes/pykka/__init__.py @@ -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()