By substracting datetimes, you can have a timedelta. This timedelta can be divided itself to give you what you want :
(datetime.datetime.now() - datetime.datetime(2012, 1, 1)) // datetime.timedelta(minutes=1)
(this code is only valid with python3, and that's why everybody should switch to python3 ;-) )