--system-site-packages
gives access to the global site-packages modules to the virtual environment.
you could do:
$ sudo apt-get install python-m2crypto
$ virtualenv env --system-site-packages
… and you would then have access to m2crypto (along with all other system-wide installed packages) inside your virtualenv.