Leiningen won't do the pulling for you (edit: not out of the box, anyway; following the lead from Sunng's answer leads one to discover that a plugin has been written for this -- see also my comment on that answer; checkout deps remain a good, built-in solution), but you can have checkouts of other projects put on the classpath. This functionality is described in the FAQ section of the README; here's the relevant Q&A:
Q: I want to hack two projects in parallel, but it's annoying to
switch between them.
A: If you create a directory called checkouts in
your project root and symlink some other project roots into it,
Leiningen will allow you to hack on them in parallel. That means
changes in the dependency will be visible in the main project without
having to go through the whole
install/switch-projects/deps/restart-repl cycle, and the copy in
checkouts will take precedence over the dependency declared in
project.clj. Note that this is not a replacement for listing the
project in :dependencies; it simply supplements that for convenience.