Utilisation de pip avec git+ de cloner un dépôt peut être extrêmement lente (test avec https://github.com/django/django@stable/1.6.x par exemple, il va prendre quelques minutes). La chose la plus rapide que j'ai trouvé qui fonctionne avec GitHub et BitBucket, est:
pip install https://github.com/user/repository/archive/branch.zip
qui devient, pour django maître:
pip install https://github.com/django/django/archive/master.zip
pour django stable/1.7.x:
pip install https://github.com/django/django/archive/stable/1.7.x.zip
Avec BitBucket c'est sur le même schéma prévisible:
pip install https://bitbucket.org/izi/django-admin-tools/get/default.zip
Ici, la branche master est généralement nommé par défaut.
Cela permettra de rendre votre requirements.txt l'installation beaucoup plus rapide.