summaryrefslogtreecommitdiff
path: root/gnu/packages/python-crypto.scm
diff options
context:
space:
mode:
authorJuliana Sims <juli@incana.org>2023-05-13 13:31:38 -0400
committerLudovic Courtès <ludo@gnu.org>2023-05-22 17:05:22 +0200
commit75ae763b4e09f5f7f0b21d28b4f308bcb02f1876 (patch)
tree810900344d420aad2f51833e9bcb88042a4abc1b /gnu/packages/python-crypto.scm
parentef5861693682012f5473d7375c242ff456098821 (diff)
gnu: python-txtorcon: Fix failing build.
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 <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/python-crypto.scm')
-rw-r--r--gnu/packages/python-crypto.scm8
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index b1d94e85b86..be3ab5d0be2 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -27,6 +27,7 @@
27;;; Copyright © 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com> 27;;; Copyright © 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
28;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be> 28;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
29;;; Copyright © 2022 Antero Mejr <antero@mailbox.org> 29;;; Copyright © 2022 Antero Mejr <antero@mailbox.org>
30;;; Copyright © 2023 Juliana Sims <juli@incana.org>
30;;; 31;;;
31;;; This file is part of GNU Guix. 32;;; This file is part of GNU Guix.
32;;; 33;;;
@@ -1253,7 +1254,12 @@ Password-Authenticated Key Exchange algorithm.")
1253 (uri (pypi-uri "txtorcon" version)) 1254 (uri (pypi-uri "txtorcon" version))
1254 (sha256 1255 (sha256
1255 (base32 1256 (base32
1256 "0fxzhsc62bhmr730vj9pzallmw56gz6iykvl28a5agrycm0bfc9p")))) 1257 "0fxzhsc62bhmr730vj9pzallmw56gz6iykvl28a5agrycm0bfc9p"))
1258 (modules '((guix build utils)))
1259 (snippet
1260 #~(substitute* "txtorcon/controller.py"
1261 (("from collections import Sequence")
1262 "from collections.abc import Sequence")))))
1257 (build-system python-build-system) 1263 (build-system python-build-system)
1258 (arguments 1264 (arguments
1259 ;; The tests fail immediately due to a missing file. Reported upstream: 1265 ;; The tests fail immediately due to a missing file. Reported upstream: