diff options
author | Marius Bakke <mbakke@fastmail.com> | 2016-12-15 16:49:14 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2016-12-15 16:50:15 +0100 |
commit | c616b5d3b5aefc00485f03f756871a2d87714268 (patch) | |
tree | 7dca50a71d054551b49875f9b9e570a306c63747 | |
parent | f959495ba06d77194d843ea729c39aaa8a168051 (diff) | |
download | guix-c616b5d3b5aefc00485f03f756871a2d87714268.tar guix-c616b5d3b5aefc00485f03f756871a2d87714268.tar.gz |
gnu: python-oauthlib: Fix tests.
* gnu/packages/python.scm (python-oauthlib)[native-inputs]:
Add python-mock.
(python2-oauthlib)[native-inputs]: Inherit python-mock.
-rw-r--r-- | gnu/packages/python.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 4472e7832f..55274783ff 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2536,6 +2536,7 @@ somewhat intelligeble.") (build-system python-build-system) (native-inputs `(("python-nose" ,python-nose) + ("python-mock" ,python-mock) ("python-cryptography" ,python-cryptography) ("python-pyjwt" ,python-pyjwt) ("python-blinker" ,python-blinker))) @@ -2552,7 +2553,6 @@ OAuth request-signing logic.") (package (inherit base) (native-inputs `(("python2-unittest2" ,python2-unittest2) - ("python2-mock" ,python2-mock) ,@(package-native-inputs base)))))) (define-public python-itsdangerous |