gnu: python-django-allauth: Update to 0.39.1.

* gnu/packages/django.scm (python-django-allauth): Update to 0.39.1.
This commit is contained in:
Julien Lepiller 2019-03-04 21:27:40 +01:00
parent 9597c55005
commit add6635281
No known key found for this signature in database
GPG key ID: 43111F4520086A0C

View file

@ -218,14 +218,14 @@ (define-public python2-django-filter
(define-public python-django-allauth
(package
(name "python-django-allauth")
(version "0.30.0")
(version "0.39.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "django-allauth" version))
(sha256
(base32
"1fslqc5qqb0b66yscvkyjwfv8cnbfx5nlkpnwimyb3pf1nc1w7r3"))))
"17l0acpr3cihdndzccjhgv58f9z170v2qwx7w0b8w6235x646i24"))))
(build-system python-build-system)
(arguments
'(#:phases
@ -234,19 +234,20 @@ (define-public python-django-allauth
(add-before 'check 'skip-test-requiring-network-access
(lambda _
(substitute* "allauth/socialaccount/providers/openid/tests.py"
(("import override_settings") "import tag, override_settings")
(("def test_login")
"from django.test import tag
@tag('requires-web')
"@tag('requires-web')
def test_login"))))
(replace 'check
(lambda _
;; TODO: investigate why this test fails
(delete-file "allauth/socialaccount/providers/cern/tests.py")
(setenv "DJANGO_SETTINGS_MODULE" "test_settings")
(zero? (system*
"django-admin"
(invoke "django-admin"
"test"
"allauth"
"--verbosity=2"
"--exclude-tag=requires-web")))))))
"--exclude-tag=requires-web"))))))
(propagated-inputs
`(("python-openid" ,python-openid)
("python-requests" ,python-requests)