From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:49161) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hNWFQ-00075J-U9 for guix-patches@gnu.org; Mon, 06 May 2019 01:33:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hNWFP-0002a1-Ta for guix-patches@gnu.org; Mon, 06 May 2019 01:33:08 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:42041) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hNWFP-0002Zv-R2 for guix-patches@gnu.org; Mon, 06 May 2019 01:33:07 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hNWFP-0000Tm-NE for guix-patches@gnu.org; Mon, 06 May 2019 01:33:07 -0400 Subject: [bug#35598] [PATCH 5/6] gnu: Add python-cookiecutter Resent-Message-ID: From: Calvin Pritchard Date: Sun, 5 May 2019 22:30:16 -0700 Message-Id: <20190506053017.7255-5-pritchard.calvin@gmail.com> In-Reply-To: <20190506053017.7255-1-pritchard.calvin@gmail.com> References: <20190506053017.7255-1-pritchard.calvin@gmail.com> MIME-Version: 1.0 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: 35598@debbugs.gnu.org Cc: Calvin Pritchard From: Calvin Pritchard * gnu/packages/python-xyz.scm (python-cookiecutter). New variables. --- gnu/packages/python-xyz.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 3407803ca6..a801376c6d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -2250,6 +2250,39 @@ It can read a subset of yaml and is not capable of write yaml") "Jinja2 Extension for Dates and Times") (license license:expat))) +(define-public python-cookiecutter + (package + (name "python-cookiecutter") + (version "1.6.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "cookiecutter" version)) + (sha256 + (base32 + "0glsvaz8igi2wy1hsnhm9fkn6560vdvdixzvkq6dn20z3hpaa5hk")))) + (build-system python-build-system) + (native-inputs + `(("python-freezegun" ,python-freezegun) + ("python-pytest" ,python-pytest))) + (propagated-inputs + `(("python-binaryornot" ,python-binaryornot) + ("python-click" ,python-click) + ("python-future" ,python-future) + ("python-jinja2" ,python-jinja2) + ("python-jinja2-time" ,python-jinja2-time) + ("python-poyo" ,python-poyo) + ("python-requests" ,python-requests) + ("python-whichcraft" ,python-whichcraft))) + (home-page + "https://github.com/audreyr/cookiecutter") + (synopsis + "Command-line utility to create projects from templates") + (description + "A command-line utility that creates projects from project templates, +e.g. creating a Python package project from a Python package project template.") + (license license:bsd-3))) + (define-public python-pympler (package (name "python-pympler") -- 2.17.1