diff options
author | Julien Lepiller <julien@lepiller.eu> | 2019-03-04 21:21:00 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2019-03-04 21:52:41 +0100 |
commit | 9597c550052553133d992772b6d994c72c1a03cf (patch) | |
tree | fba716d2c7a06155085124f11d07c634e693fd9e /gnu | |
parent | 1396837184fd5e119f8e1978714d4f1804ded9c3 (diff) | |
download | patches-9597c550052553133d992772b6d994c72c1a03cf.tar patches-9597c550052553133d992772b6d994c72c1a03cf.tar.gz |
gnu: python2-openid: Fix package.
* gnu/packages/python-web (python2-openid)[arguments]: Disable tests.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-web.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 839f48ce4f..e25b68153d 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -600,7 +600,9 @@ for clients and servers.") (build-system python-build-system) (arguments ;; Python 3 support is in `python3-openid`, a separate package. - `(#:python ,python-2)) + `(#:python ,python-2 + ;; Tests aren't initialized correctly. + #:tests? #f)) (home-page "https://github.com/openid/python-openid") (synopsis "OpenID support for servers and consumers") (description "This library provides OpenID authentication for Python, both |