diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2021-01-07 14:17:20 +0100 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-02-01 11:53:45 -0500 |
commit | 42b89fbf3069e09c3537c34723d79f89d12f6c04 (patch) | |
tree | d97fa86ee211b06e205efc8fe96d2c9caa6ca40b /gnu | |
parent | 1ea198f86247d929bfc796d4b59d6d46d0082e05 (diff) | |
download | guix-42b89fbf3069e09c3537c34723d79f89d12f6c04.tar.gz guix-42b89fbf3069e09c3537c34723d79f89d12f6c04.zip |
gnu: python-traceback2: Add missing dependency.
* gnu/packages/python-xyz.scm (python-traceback2)[propagated-inputs]:
Add python-six.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 97a3d07064..b7e61b0619 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17229,7 +17229,8 @@ lines are read from a single file.") (native-inputs `(("python-pbr" ,python-pbr-minimal))) (propagated-inputs - `(("python-linecache2" ,python-linecache2))) + `(("python-linecache2" ,python-linecache2) + ("python-six" ,python-six))) (home-page "https://github.com/testing-cabal/traceback2") (synopsis "Backports of the traceback module") |