Update a Drupal module weight on install so it's loaded after contrib modules.
function your_module_name_install() {
db_update('system')
->fields(array('weight' => your_preferred_weight))
->condition('name', 'your_module_name', '=')
->execute();
}