From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:54085) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1grxUL-0003hX-5n for guix-patches@gnu.org; Thu, 07 Feb 2019 23:10:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1grxUK-0006Av-BX for guix-patches@gnu.org; Thu, 07 Feb 2019 23:10:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:39490) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1grxUK-0006Ai-7C for guix-patches@gnu.org; Thu, 07 Feb 2019 23:10:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1grxUK-0006fZ-1o for guix-patches@gnu.org; Thu, 07 Feb 2019 23:10:04 -0500 Subject: [bug#34381] [PATCH 3/5] gnu: Add python-jsonrpc-server. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:54026) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1grxUA-0003f9-6o for guix-patches@gnu.org; Thu, 07 Feb 2019 23:09:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1grxU9-0005sx-9t for guix-patches@gnu.org; Thu, 07 Feb 2019 23:09:54 -0500 Received: from mout02.posteo.de ([185.67.36.66]:47545) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1grxU8-0005qj-VS for guix-patches@gnu.org; Thu, 07 Feb 2019 23:09:53 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 4F20A2400E5 for ; Fri, 8 Feb 2019 05:09:51 +0100 (CET) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 43whXZ1wrDz9rxL for ; Fri, 8 Feb 2019 05:09:50 +0100 (CET) From: Brett Gilio Date: Thu, 07 Feb 2019 22:09:48 -0600 Message-ID: <878syqsyyb.fsf@posteo.net> MIME-Version: 1.0 Content-Type: text/x-patch Content-Disposition: inline; filename=0003-gnu-Add-python-jsonrpc-server.patch Content-Description: [PATCH 3/5] gnu: Add python-jsonrpc-server. 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: 34381@debbugs.gnu.org >From 6f88f586ca51d5fba375ef52fec8a73f95911bd0 Mon Sep 17 00:00:00 2001 From: Brett Gilio Date: Thu, 7 Feb 2019 22:04:16 -0600 Subject: [PATCH 3/5] gnu: Add python-jsonrpc-server. * gnu/packages/python-xyz.scm (python-jsonrpc-server): New variable. --- gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9efbbeba8..5c7241621 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -2523,6 +2523,28 @@ Language (TOML) configuration files.") "The Python Language Server (pyls) is an implementation of the Python 3 language specification for the LSP. This tool is used in many text-editing environments to provide a complete and integrated feature-set for programming Python effectively.") (license license:expat))) +(define-public python-jsonrpc-server + (package + (name "python-jsonrpc-server") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "python-jsonrpc-server" version)) + (sha256 + (base32 + "0m4ykpcdy52x37n1ikysp07j7p8ialcdvvvsrjp3545sn7iiid09")))) + (build-system python-build-system) + (propagated-inputs + `(("python-future" ,python-future) + ("python-mock" ,python-mock) + ("python-pytest" ,python-pytest))) + (home-page + "https://github.com/palantir/python-jsonrpc-server") + (synopsis "JSON RPC 2.0 server library") + (description "An implementation of the JSON RPC 2.0 server library for interoperability with Python.") + (license license:expat))) + (define-public python-black (package (name "python-black") -- 2.20.1