From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tanguy Le Carrour Subject: [PATCH 1/4] gnu: Add Cookiecutter and its inputs Date: Thu, 3 Oct 2019 09:48:10 +0200 Message-ID: <20191003074810.wcqnwggguyppna56@rafflesia> References: <20191003074527.jnz4lbjgpbp46b5v@rafflesia> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="6olsxkksbe74e6ir" Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:37178) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iFvqQ-0001YX-1J for guix-devel@gnu.org; Thu, 03 Oct 2019 03:48:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iFvqO-000659-Gp for guix-devel@gnu.org; Thu, 03 Oct 2019 03:48:13 -0400 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:35255) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iFvqO-00064U-9K for guix-devel@gnu.org; Thu, 03 Oct 2019 03:48:12 -0400 Received: from localhost (176-159-32-89.abo.bbox.fr [176.159.32.89]) (Authenticated sender: tanguy@bioneland.org) by relay3-d.mail.gandi.net (Postfix) with ESMTPSA id BE48660014 for ; Thu, 3 Oct 2019 07:48:10 +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 --6olsxkksbe74e6ir Content-Type: text/plain; charset=us-ascii Content-Disposition: inline -- Tanguy --6olsxkksbe74e6ir Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0001-gnu-Add-Cookiecutter-and-its-inputs.patch" Content-Transfer-Encoding: 8bit >From dc07c609430e9e63dd4d87b71d84545db87d9f8c Mon Sep 17 00:00:00 2001 From: "tanguy@bioneland.org" Date: Thu, 3 Oct 2019 09:05:26 +0200 Subject: [PATCH 1/4] gnu: Add Cookiecutter and its inputs --- gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 413d68c258..e041adfdc4 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -66,6 +66,7 @@ ;;; Copyright © 2019 Jacob MacDonald ;;; Copyright © 2019 Giacomo Leidi ;;; Copyright © 2019 Wiktor Żelazny +;;; Copyright © 2019 Tanguy Le Carrour ;;; ;;; This file is part of GNU Guix. ;;; @@ -2475,6 +2476,28 @@ written in pure Python.") (define-public python2-jinja2 (package-with-python2 python-jinja2)) +(define-public python-jinja2-time + (package + (name "python-jinja2-time") + (version "0.2.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "jinja2-time" version)) + (sha256 + (base32 + "0h0dr7cfpjnjj8bgl2vk9063a53649pn37wnlkd8hxjy656slkni")))) + (build-system python-build-system) + (propagated-inputs + `(("python-arrow" ,python-arrow) + ("python-jinja2" ,python-jinja2))) + (home-page + "https://github.com/hackebrot/jinja2-time") + (synopsis "Jinja2 Extension for Dates and Times") + (description + "Jinja2 Extension for Dates and Times") + (license license:expat))) + (define-public python-pystache (package (name "python-pystache") -- 2.23.0 --6olsxkksbe74e6ir--