summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Bakke <marius@gnu.org>2022-01-18 17:35:06 +0100
committerMarius Bakke <marius@gnu.org>2022-01-18 19:35:55 +0100
commit81b7bf40b28094d34aa53518a97e3d67e29a61ed (patch)
tree18c6edee8cd636af8189c97788ce1d1e9b2aefcb
parent02ffe4a4a936f4499afd6c7c7cf829533ebfc26e (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.
-rw-r--r--gnu/packages/graphviz.scm6
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 <me@tobias.gr>
;;; Copyright © 2017 Gábor Boskovits <boskovits@gmail.com>
;;; Copyright © 2018 Mathieu Lirzin <mthl@gnu.org>
-;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
+;;; Copyright © 2020, 2022 Marius Bakke <marius@gnu.org>
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
;;; Copyright © 2020 Pjotr Prins <pjotr.guix@thebird.nl>
;;; Copyright © 2021 Bonface Munyoki Kilyungi <me@bonfacemunyoki.com>
@@ -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