From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:53184) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jRkec-0005D5-4b for guix-patches@gnu.org; Thu, 23 Apr 2020 18:49:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jRkeV-0000ee-6v for guix-patches@gnu.org; Thu, 23 Apr 2020 18:49:09 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:44465) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jRkeU-0000c1-6w for guix-patches@gnu.org; Thu, 23 Apr 2020 18:49:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jRkeU-00035m-03 for guix-patches@gnu.org; Thu, 23 Apr 2020 18:49:02 -0400 Subject: [bug#40801] [PATCH] gnu: Add pyton-osc. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:51740) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jRkeF-00057F-JM for guix-patches@gnu.org; Thu, 23 Apr 2020 18:48:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jRkeA-00080W-CH for guix-patches@gnu.org; Thu, 23 Apr 2020 18:48:47 -0400 Received: from confino.investici.org ([212.103.72.250]:53501) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jRke7-0007k0-JH for guix-patches@gnu.org; Thu, 23 Apr 2020 18:48:41 -0400 From: Giacomo Leidi Date: Fri, 24 Apr 2020 00:47:44 +0200 Message-Id: <20200423224744.20574-1-goodoldpaul@autistici.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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: 40801@debbugs.gnu.org Cc: Giacomo Leidi * gnu/packages/python-xyz.scm (python-osc): New variable. --- gnu/packages/python-xyz.scm | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 1a7bbcc299..982af649ad 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -63,7 +63,7 @@ ;;; Copyright © 2019, 2020 Alex Griffin ;;; Copyright © 2019 Pierre Langlois ;;; Copyright © 2019 Jacob MacDonald -;;; Copyright © 2019 Giacomo Leidi +;;; Copyright © 2019, 2020 Giacomo Leidi ;;; Copyright © 2019 Wiktor Żelazny ;;; Copyright © 2019, 2020 Tanguy Le Carrour ;;; Copyright © 2019 Mădălin Ionel Patrașcu @@ -19544,3 +19544,25 @@ a set of pluggable tools to help the programmer in various ways. Some example tools are source structure, project manager, interactive help, workspace...") (license license:bsd-2))) + +(define-public python-osc + (package + (name "python-osc") + (version "1.7.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "python-osc" version)) + (sha256 + (base32 + "0cnh0z5lnng7fh48nmfaqqn8j25k13gkd4rhxd3m6sjqiix9s3vn")))) + (build-system python-build-system) + (home-page + "https://github.com/attwad/python-osc") + (synopsis + "Open Sound Control server and client implementations") + (description + "@code{python-osc} is a pure Python library with no external dependencies. It +implements the @uref{http://opensoundcontrol.org/spec-1_0, Open Sound Control 1.0} +specification.") + (license license:unlicense))) -- 2.26.2