diff options
author | Marius Bakke <[email protected]> | 2022-01-18 17:35:06 +0100 |
---|---|---|
committer | Marius Bakke <[email protected]> | 2022-01-18 19:35:55 +0100 |
commit | 81b7bf40b28094d34aa53518a97e3d67e29a61ed (patch) | |
tree | 18c6edee8cd636af8189c97788ce1d1e9b2aefcb /gnu/packages/graphviz.scm | |
parent | 02ffe4a4a936f4499afd6c7c7cf829533ebfc26e (diff) |
gnu: python-pydot: Build with old pyparsing.
* gnu/packages/graphviz.scm (python-pydot)[propagated-inputs]: Change from
PYTHON-PYPARSING to PYTHON-PYPARSING-2.4.7.
Diffstat (limited to 'gnu/packages/graphviz.scm')
-rw-r--r-- | gnu/packages/graphviz.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/graphviz.scm b/gnu/packages/graphviz.scm index ab39e49d7d..70b1c8cb97 100644 --- a/gnu/packages/graphviz.scm +++ b/gnu/packages/graphviz.scm @@ -6,7 +6,7 @@ ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2017 Gábor Boskovits <[email protected]> ;;; Copyright © 2018 Mathieu Lirzin <[email protected]> -;;; Copyright © 2020 Marius Bakke <[email protected]> +;;; Copyright © 2020, 2022 Marius Bakke <[email protected]> ;;; Copyright © 2020 Vincent Legoll <[email protected]> ;;; Copyright © 2020 Pjotr Prins <[email protected]> ;;; Copyright © 2021 Bonface Munyoki Kilyungi <[email protected]> @@ -395,7 +395,9 @@ can be used either as a standalone application, or as a Python library.") ;; For tests. (list graphviz python-chardet)) (propagated-inputs - (list python-pyparsing)) + ;; XXX: Two test failures with 3.0+: + ;; https://github.com/pydot/pydot/issues/277 + (list python-pyparsing-2.4.7)) (home-page "https://github.com/pydot/pydot") (synopsis "Python interface to Graphviz's DOT language") (description |