From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:53020) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gvTWn-0007cI-5L for guix-patches@gnu.org; Sun, 17 Feb 2019 15:59:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gvTWm-0005DX-5L for guix-patches@gnu.org; Sun, 17 Feb 2019 15:59:09 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:52486) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gvTWl-0005D8-Vo for guix-patches@gnu.org; Sun, 17 Feb 2019 15:59:08 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gvTWl-00012L-UF for guix-patches@gnu.org; Sun, 17 Feb 2019 15:59:07 -0500 Subject: [bug#34515] [PATCH 09/13] gnu: Add python-txtorcon. Resent-Message-ID: From: Leo Famulari Date: Sun, 17 Feb 2019 15:57:45 -0500 Message-Id: <2518dc3323426f31209dcc5f2a53539baad32058.1550437064.git.leo@famulari.name> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 34515@debbugs.gnu.org * gnu/packages/python-crypto.scm (python-txtorcon): New variable. --- gnu/packages/python-crypto.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index 6ca82cb061..a944ee9662 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -1036,3 +1036,32 @@ Derivation function (HKDF) defined in RFC 5869.") (description "This package provides a Python implementation of the SPAKE2 Password-Authenticated Key Exchange algorithm.") (license license:expat))) + +(define-public python-txtorcon + (package + (name "python-txtorcon") + (version "19.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "txtorcon" version)) + (sha256 + (base32 + "0fxzhsc62bhmr730vj9pzallmw56gz6iykvl28a5agrycm0bfc9p")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) ; fail silently + (propagated-inputs + `(("python-automat" ,python-automat) + ("python-hyperlink" ,python-hyperlink) + ("python-idna" ,python-idna) + ("python-incremental" ,python-incremental) + ("python-ipaddress" ,python-ipaddress) + ("python-service-identity" ,python-service-identity) + ("python-twisted" ,python-twisted) + ("python-zope-interface" ,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, +with state-tracking and configuration abstractions.") + (license license:expat))) -- 2.20.1