From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tanguy Le Carrour Subject: [PATCH 2/4] gnu: Add Cookiecutter and its inputs Date: Thu, 3 Oct 2019 09:48:36 +0200 Message-ID: <20191003074836.ji64435lvov2d2ko@rafflesia> References: <20191003074527.jnz4lbjgpbp46b5v@rafflesia> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="ql5wno2fzah32kjg" Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:37332) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iFvqq-0001qv-4x for guix-devel@gnu.org; Thu, 03 Oct 2019 03:48:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iFvqp-0006JO-0V for guix-devel@gnu.org; Thu, 03 Oct 2019 03:48:40 -0400 Received: from relay1-d.mail.gandi.net ([217.70.183.193]:46651) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iFvqo-0006Ix-Pu for guix-devel@gnu.org; Thu, 03 Oct 2019 03:48:38 -0400 Received: from localhost (176-159-32-89.abo.bbox.fr [176.159.32.89]) (Authenticated sender: tanguy@bioneland.org) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id 11278240009 for ; Thu, 3 Oct 2019 07:48:36 +0000 (UTC) Content-Disposition: inline In-Reply-To: <20191003074527.jnz4lbjgpbp46b5v@rafflesia> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Guix --ql5wno2fzah32kjg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline -- Tanguy --ql5wno2fzah32kjg Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="0002-gnu-Add-Cookiecutter-and-its-inputs.patch" >From b1a708198ea93c5a6d591d6b4ac864819de432e3 Mon Sep 17 00:00:00 2001 From: "tanguy@bioneland.org" Date: Thu, 3 Oct 2019 09:13:59 +0200 Subject: [PATCH 2/4] gnu: Add Cookiecutter and its inputs --- gnu/packages/python-xyz.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e041adfdc4..eb326aae6f 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1552,6 +1552,25 @@ 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 --ql5wno2fzah32kjg--