>From a50e29957e5d5ebe404631ffe6efeaf0f37def9c Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Sat, 22 Apr 2017 21:09:47 +0200 Subject: [PATCH 33/34] gnu: Fix python2-django-allauth. because python-openid is not the same package as python2-openid, package-with-python2 doesn't work in packages that depend on it. * gnu/packages/django.scm (python2-django-allauth)[propagated-inputs]: Use python2 versions. --- gnu/packages/django.scm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index 51c653518..37f437cf7 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -220,7 +220,13 @@ account authentication.") (license license:expat))) (define-public python2-django-allauth - (package-with-python2 python-django-allauth)) + (package + (inherit (package-with-python2 python-django-allauth)) + (propagated-inputs + `(("python2-openid" ,python2-openid) + ("python2-requests" ,python2-requests) + ("python2-requests-oauthlib" ,python2-requests-oauthlib))))) + (define-public python-django-gravatar2 (package -- 2.12.2