[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/08: gnu: python-txtorcon: Run guix style.
From: |
guix-commits |
Subject: |
06/08: gnu: python-txtorcon: Run guix style. |
Date: |
Mon, 22 May 2023 11:11:45 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit daeafac0c4b00cb95fbe50372428830f6be1059a
Author: Juliana Sims <juli@incana.org>
AuthorDate: Sat May 13 13:31:39 2023 -0400
gnu: python-txtorcon: Run guix style.
* gnu/packages/python-crypto.scm (python-txtorcon): Run guix style.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/python-crypto.scm | 43 ++++++++++++++++++++----------------------
1 file changed, 20 insertions(+), 23 deletions(-)
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index be3ab5d0be..6a7611ccdb 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -1248,31 +1248,28 @@ Password-Authenticated Key Exchange algorithm.")
(package
(name "python-txtorcon")
(version "19.0.0")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "txtorcon" version))
- (sha256
- (base32
- "0fxzhsc62bhmr730vj9pzallmw56gz6iykvl28a5agrycm0bfc9p"))
- (modules '((guix build utils)))
- (snippet
- #~(substitute* "txtorcon/controller.py"
- (("from collections import Sequence")
- "from collections.abc import Sequence")))))
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "txtorcon" version))
+ (sha256
+ (base32
+ "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:
- ;; <https://github.com/meejah/txtorcon/issues/330>
- `(#:tests? #f))
- (propagated-inputs
- (list python-automat
- python-idna
- python-incremental
- python-pyopenssl
- python-service-identity
- python-twisted
- python-zope-interface))
+ ;; The tests fail immediately due to a missing file. Reported upstream:
+ ;; <https://github.com/meejah/txtorcon/issues/330>
+ (list #:tests? #f))
+ (propagated-inputs (list python-automat
+ python-idna
+ python-incremental
+ python-pyopenssl
+ python-service-identity
+ python-twisted
+ python-zope-interface))
(home-page "https://github.com/meejah/txtorcon")
(synopsis "Twisted-based Tor controller client")
(description "This package provides a Twisted-based Tor controller client,
- branch master updated (849286ba66 -> dff1689bb3), guix-commits, 2023/05/22
- 05/08: gnu: python-txtorcon: Fix failing build., guix-commits, 2023/05/22
- 06/08: gnu: python-txtorcon: Run guix style.,
guix-commits <=
- 04/08: gnu: homebank: Update to 5.6.3., guix-commits, 2023/05/22
- 03/08: gnu: Add opensycl., guix-commits, 2023/05/22
- 07/08: gnu: python-txtorcon: Update to 23.0.0., guix-commits, 2023/05/22
- 08/08: gnu: oil: Update to 0.15.0., guix-commits, 2023/05/22
- 01/08: gnu: lcov: Patch reference to 'find' command., guix-commits, 2023/05/22
- 02/08: substitute: Rethrow with 'raise-exception', not 'throw'., guix-commits, 2023/05/22