From 38fdd118d0bcfcff47632ec28f89a4f5fc1dd8a1 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Tue, 18 Jan 2022 17:50:19 +0100 Subject: gnu: python-leidenalg: Fix build failure. * gnu/packages/graph.scm (python-leidenalg)[arguments]: Add #:phases. [native-inputs]: Add PYTHON-SETUPTOOLS. --- gnu/packages/graph.scm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'gnu/packages/graph.scm') diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm index 30027c9827..095fe1c9d1 100644 --- a/gnu/packages/graph.scm +++ b/gnu/packages/graph.scm @@ -9,6 +9,7 @@ ;;; Copyright © 2021 Vinicius Monego ;;; Copyright © 2021 Alexandre Hannud Abdo ;;; Copyright © 2021, 2022 Maxim Cournoyer +;;; Copyright © 2022 Marius Bakke ;;; ;;; This file is part of GNU Guix. ;;; @@ -474,9 +475,18 @@ (define-public python-leidenalg (base32 "15fwld9hdw357rd026mzcwpah5liy4f33vc9x9kwy37g71b2rjf1")))) (build-system python-build-system) - (arguments '(#:tests? #f)) ; tests are not included + (arguments + '(#:tests? #f ;tests are not included + #:phases (modify-phases %standard-phases + (add-after 'unpack 'fix-requirements + (lambda _ + (substitute* "setup.py" + (("python-igraph >=") + "igraph >="))))))) (native-inputs - (list pkg-config)) + ;; XXX: setuptools >= 58 as shipped with Python 3.9+ removes support + ;; for lib2to3, so use this older variant. + (list pkg-config python-setuptools)) (inputs (list igraph)) (propagated-inputs -- cgit v1.2.3