From 75ae763b4e09f5f7f0b21d28b4f308bcb02f1876 Mon Sep 17 00:00:00 2001 From: Juliana Sims Date: Sat, 13 May 2023 13:31:38 -0400 Subject: gnu: python-txtorcon: Fix failing build. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Oops, I forgot to add a copyright line - this version fixes that. * gnu/packages/python-crypto.scm (python-txtorcon): Fix failing build. Signed-off-by: Ludovic Courtès --- gnu/packages/python-crypto.scm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'gnu/packages/python-crypto.scm') diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index b1d94e85b8..be3ab5d0be 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -27,6 +27,7 @@ ;;; Copyright © 2021, 2022, 2023 Maxim Cournoyer ;;; Copyright © 2021 Maxime Devos ;;; Copyright © 2022 Antero Mejr +;;; Copyright © 2023 Juliana Sims ;;; ;;; This file is part of GNU Guix. ;;; @@ -1253,7 +1254,12 @@ Password-Authenticated Key Exchange algorithm.") (uri (pypi-uri "txtorcon" version)) (sha256 (base32 - "0fxzhsc62bhmr730vj9pzallmw56gz6iykvl28a5agrycm0bfc9p")))) + "0fxzhsc62bhmr730vj9pzallmw56gz6iykvl28a5agrycm0bfc9p")) + (modules '((guix build utils))) + (snippet + #~(substitute* "txtorcon/controller.py" + (("from collections import Sequence") + "from collections.abc import Sequence"))))) (build-system python-build-system) (arguments ;; The tests fail immediately due to a missing file. Reported upstream: -- cgit v1.2.3