In buildout I can enumerate eggs by name:
eggs =
  aa.ee
  ee.ii
  ii.oo
  oo.uu
By default, all that eggs are retrieved from https://pypi.python.org. How can I specify that the egg ii.oo must be retrieved from another package repository? For example I want ot specify that an specific egg is in http://example that runs using pypiserver.
                        
It is possible indicate where to retrieve the egg from including the full path to it in the
find-lingsparameter. The following example is taken from the pip docs: