diff options
author | Tanguy Le Carrour <tanguy@bioneland.org> | 2022-01-05 11:13:28 +0100 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2022-01-05 18:10:47 -0500 |
commit | c468db2e567e17418e4b0e214856056bcfee85a8 (patch) | |
tree | 8e08917a4cfb7a241b5776e5f06fa88f66728502 | |
parent | 97657689507a0681aa9699407d292383ff22c330 (diff) |
gnu: python-urwidtrees: Build with python-mock.
This fixes a build failure in the 'sanity-check' phase.
* gnu/packages/python-xyz.scm (python-urwidtrees)[native-inputs]: Add
python-mock.
Signed-off-by: Leo Famulari <leo@famulari.name>
-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 e04b4f973f..fff2f06835 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -65,7 +65,7 @@ ;;; Copyright © 2019 Jacob MacDonald <jaccarmac@gmail.com> ;;; Copyright © 2019, 2020, 2021 Giacomo Leidi <goodoldpaul@autistici.org> ;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz> -;;; Copyright © 2019, 2020, 2021 Tanguy Le Carrour <tanguy@bioneland.org> +;;; Copyright © 2019, 2020, 2021, 2022 Tanguy Le Carrour <tanguy@bioneland.org> ;;; Copyright © 2019, 2021 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de> ;;; Copyright © 2020 Riku Viitanen <riku.viitanen@protonmail.com> ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net> @@ -8893,6 +8893,7 @@ distance between two or more sequences by many algorithms.") (arguments '(#:tests? #f)) ; no tests (propagated-inputs (list python-urwid)) + (native-inputs (list python-mock)) (home-page "https://github.com/pazz/urwidtrees") (synopsis "Tree widgets for urwid") (description "Urwidtrees is a Widget Container API for the @code{urwid} |