mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
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>
This commit is contained in:
parent
ef58616936
commit
75ae763b4e
1 changed files with 7 additions and 1 deletions
|
@ -27,6 +27,7 @@
|
|||
;;; Copyright © 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
|
||||
;;; Copyright © 2022 Antero Mejr <antero@mailbox.org>
|
||||
;;; Copyright © 2023 Juliana Sims <juli@incana.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -1253,7 +1254,12 @@ (define-public python-txtorcon
|
|||
(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:
|
||||
|
|
Loading…
Reference in a new issue