From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:50271) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iK1OF-0005lb-5E for guix-patches@gnu.org; Mon, 14 Oct 2019 10:32:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iK1OD-0002lt-Sf for guix-patches@gnu.org; Mon, 14 Oct 2019 10:32:02 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:60827) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iK1OD-0002lp-Oh for guix-patches@gnu.org; Mon, 14 Oct 2019 10:32:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iK1OD-00057j-KL for guix-patches@gnu.org; Mon, 14 Oct 2019 10:32:01 -0400 Subject: [bug#37598] [PATCH 2/4] gnu: Add python-poyo. References: <20191003121316.irq3vdmu4ov6dygb@rafflesia> In-Reply-To: <20191003121316.irq3vdmu4ov6dygb@rafflesia> Resent-Message-ID: Date: Mon, 14 Oct 2019 16:31:25 +0200 From: Tanguy Le Carrour Message-ID: <20191014143125.r7lk62ntkftajiqx@rafflesia> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="qb7auw67rhe5pkso" Content-Disposition: inline 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: 37598@debbugs.gnu.org --qb7auw67rhe5pkso Content-Type: text/plain; charset=us-ascii Content-Disposition: inline --qb7auw67rhe5pkso Content-Type: text/plain; charset=us-ascii Content-Disposition: inline >From 37783c5809b0ca20ef0c8fdd0a9667881ed04ade Mon Sep 17 00:00:00 2001 From: Tanguy Le Carrour Date: Thu, 3 Oct 2019 09:13:59 +0200 Subject: [PATCH 2/4] gnu: Add python-poyo. * gnu/packages/python-xyz.scm (python-poyo): New public variable. --- gnu/packages/python-xyz.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2bcf352278..6a137c9c90 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1572,6 +1572,23 @@ existing ones.") ;; Tests don't work with python2. #:tests? #f))))) +(define-public python-poyo + (package + (name "python-poyo") + (version "0.5.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "poyo" version)) + (sha256 + (base32 + "1pflivs6j22frz0v3dqxnvc8yb8fb52g11lqr88z0i8cg2m5csg2")))) + (build-system python-build-system) + (home-page "https://github.com/hackebrot/poyo") + (synopsis "Lightweight YAML Parser for Python") + (description "A lightweight YAML Parser for Python.") + (license license:expat))) + (define-public scons (package (name "scons") -- 2.23.0 --qb7auw67rhe5pkso--