16 lines
364 B
Python
16 lines
364 B
Python
|
from toolchain import CythonRecipe
|
||
|
|
||
|
|
||
|
class CffiRecipe(CythonRecipe):
|
||
|
name = "cffi"
|
||
|
version = "1.8.3"
|
||
|
url = (
|
||
|
"https://pypi.python.org/packages/0a/f3/"
|
||
|
"686af8873b70028fccf67b15c78fd4e4667a3da995007afc71e786d61b0a/"
|
||
|
"cffi-{version}.tar.gz"
|
||
|
)
|
||
|
depends = ["libffi", "pycparser"]
|
||
|
cythonize = False
|
||
|
|
||
|
recipe = CffiRecipe()
|