There you go:
[buildout] parts = getit # used to show which download was fetched download-cache = . [getit] recipe = zc.recipe.egg # this is the first key: ignore using the pypi index index = . # this is the second key: provide a direct link to the sdist find-links = https://pypi.python.org/packages/source/h/hachoir-core/hachoir-core-1.3.3.tar.gz eggs = hachoir-core==1.3.3
And for this, only for some OS using conditional sections (disclaimer, I wrote this) with the latest buildout version:
[buildout] parts = getit download-cache = . [getit: macosx] recipe = zc.recipe.egg index = . find-links = https://pypi.python.org/packages/source/h/hachoir-core/hachoir-core-1.3.3.tar.gz eggs = hachoir-core==1.3.3 [getit: not macosx] recipe = zc.recipe.egg # use pypi alright eggs = hachoir-core==1.3.3
after doing this, check the distribution, it will have a copy of the extracted archive for verification: there are no pre-built eggs;)
Philippe ombredanne
source share