diff options
author | Julien Lepiller <julien@lepiller.eu> | 2019-05-14 21:18:53 +0200 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2019-05-14 21:20:19 +0200 |
commit | 6b4a6c201a935a2df8e473465662b2bb75491bfb (patch) | |
tree | 5ad3a97d36b01a949572e9585d46301fd9bf192d /gnu/packages | |
parent | 7bd30ea9883e3ec018a4fb0040dbc86905fc1760 (diff) | |
download | patches-6b4a6c201a935a2df8e473465662b2bb75491bfb.tar patches-6b4a6c201a935a2df8e473465662b2bb75491bfb.tar.gz |
gnu: python-requests-oauthlib: Fix building.
* gnu/packages/python-web.scm (python-requests-oauthlib)[native-inputs]:
Add python-pyjwt for tests.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-web.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 2db94f0430..a163014c47 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1885,7 +1885,8 @@ concurrent HTTP client library for python using @code{gevent}.") (delete-file "tests/test_core.py") #t))))) (native-inputs - `(("python-requests-mock" ,python-requests-mock) + `(("python-pyjwt" ,python-pyjwt) + ("python-requests-mock" ,python-requests-mock) ("python-mock" ,python-mock))) (propagated-inputs `(("python-oauthlib" ,python-oauthlib) |