diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2023-03-30 18:06:42 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2023-03-31 13:24:47 +0200 |
commit | 12b95dcce84e5fda7c9b4c43b90d6dc62d837c41 (patch) | |
tree | 7fef5b9b84ff0b9f5fce6081a139b0212c0c33e7 /gnu/packages/check.scm | |
parent | 28c3e6443536ad48a21ca4b94010633e738f72e2 (diff) | |
download | guix-12b95dcce84e5fda7c9b4c43b90d6dc62d837c41.tar.gz |
gnu: python-fixtures: Add missing dependency.
* gnu/packages/check.scm (python-fixtures)[propagated-inputs]: Add python-extras.
Diffstat (limited to 'gnu/packages/check.scm')
-rw-r--r-- | gnu/packages/check.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index c7d7f343c9..641f31a11b 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -1958,7 +1958,7 @@ python-fixtures package instead.") "fixtures.test_suite"))))))) (propagated-inputs ;; Fixtures uses pbr at runtime to check versions, etc. - (list python-pbr python-six)) + (list python-pbr python-six python-extras)) (native-inputs `(("python-mock" ,python-mock) ("python-testtools" ,python-testtools-bootstrap))) |