buildout.cfg 571 Bytes
Newer Older
1 2
[buildout]
extends =
3
  ../libressl/buildout.cfg
4 5 6 7 8 9 10 11 12
  ../pkgconfig/buildout.cfg

parts =
  python-cryptography

[python-cryptography]
recipe = zc.recipe.egg:custom
egg = cryptography
environment = python-cryptography-env
13
setup-eggs = ${python-cryptography-prep:eggs}
14 15 16

[python-cryptography-env]
PATH = ${pkgconfig:location}/bin:%(PATH)s
17 18 19
PKG_CONFIG_PATH = ${libressl:location}/lib/pkgconfig
LD_LIBRARY_PATH = ${libressl:location}/lib
CPATH = ${libressl:location}/include
20 21 22 23 24

[python-cryptography-prep]
recipe = zc.recipe.egg
eggs =
  ${python-cffi:egg}
Kazuhiko Shiozaki's avatar
Kazuhiko Shiozaki committed
25
  enum34
26 27
  pycparser
  six