From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:53056) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gvTWo-0007db-3a for guix-patches@gnu.org; Sun, 17 Feb 2019 15:59:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gvTWn-0005ET-6Q for guix-patches@gnu.org; Sun, 17 Feb 2019 15:59:10 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:52488) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gvTWn-0005EB-0o for guix-patches@gnu.org; Sun, 17 Feb 2019 15:59:09 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gvTWm-00012a-VS for guix-patches@gnu.org; Sun, 17 Feb 2019 15:59:09 -0500 Subject: [bug#34515] [PATCH 10/13] gnu: Add python-autobahn. Resent-Message-ID: From: Leo Famulari Date: Sun, 17 Feb 2019 15:57:46 -0500 Message-Id: <44e542e83121ab7fe02f134d349fbb484396ce30.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-web.scm (python-autobahn): New variable. --- gnu/packages/python-web.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index e54f09ddb4..b2b6daee51 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -56,6 +56,7 @@ #:use-module (gnu packages curl) #:use-module (gnu packages databases) #:use-module (gnu packages django) + #:use-module (gnu packages libffi) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) #:use-module (gnu packages python-crypto) @@ -3000,3 +3001,30 @@ correct URLs for Python according to RFCs 3986 and 3987.") @code{requests}} but written on top of @code{Twisted's} Agents. It offers a high level API for making HTTP requests when using Twisted.") (license license:expat))) + +(define-public python-autobahn + (package + (name "python-autobahn") + (version "19.2.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "autobahn" version)) + (sha256 + (base32 + "1mm7j24ls01c7jb1ad5p5cpyxvzgydiyf8b04ihykh2v8g98j0x7")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) ; fail mysteriously + (propagated-inputs + `(("python-cffi" ,python-cffi) + ("python-twisted" ,python-twisted) + ("python-txaio" ,python-txaio))) + (home-page "https://crossbar.io/autobahn/") + (synopsis "Web Application Messaging Protocol implementation") + (description "This package provides an implementation of the @dfn{Web Application +Messaging Protocol} (WAMP). WAMP connects components in distributed +applications using Publish and Subscribe (PubSub) and routed Remote Procedure +Calls (rRPC). It is ideal for distributed, multi-client and server applications +such as IoT applications or multi-user database-driven business applications.") + (license license:expat))) -- 2.20.1