diff options
author | Leo Famulari <leo@famulari.name> | 2016-10-16 13:18:12 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-10-17 13:54:51 -0400 |
commit | 759aadd46fdc8b9816c33667129d4e9bae310ba7 (patch) | |
tree | 95ddbb1895ef26d1d08096725dfbd0ac8bc4ec7d /gnu/packages/python.scm | |
parent | 66d3f50a76df00fffb6f241960c9bab48f91173d (diff) | |
download | guix-759aadd46fdc8b9816c33667129d4e9bae310ba7.tar guix-759aadd46fdc8b9816c33667129d4e9bae310ba7.tar.gz |
gnu: python-requests-toolbelt: Fix build failure by adding missing dependencies.
* gnu/packages/python.scm (python-requests-toolbelt)[native-inputs]: Add
python-betamax, python-mock and python-pytest.
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r-- | gnu/packages/python.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 85330f8bdb..e0ead5075c 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -7240,6 +7240,10 @@ for atomic file system operations.") (base32 "15q9nrgp85nqlr4kdz1zvj8z2npafi2sr12y7fqgxbkq28j1aci6")))) (build-system python-build-system) + (native-inputs + `(("python-betamax" ,python-betamax) + ("python-mock" ,python-mock) + ("python-pytest" ,python-pytest))) (propagated-inputs `(("python-requests" ,python-requests))) (synopsis "Extensions to python-requests") |