From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:49083) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hNWFN-00074Q-Kq for guix-patches@gnu.org; Mon, 06 May 2019 01:33:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hNWFM-0002X2-Ig for guix-patches@gnu.org; Mon, 06 May 2019 01:33:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:42034) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hNWFM-0002Ws-FK for guix-patches@gnu.org; Mon, 06 May 2019 01:33:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hNWFM-0000Sw-Ay for guix-patches@gnu.org; Mon, 06 May 2019 01:33:04 -0400 Subject: [bug#35598] [PATCH 5/6] gnu: Add python-cookiecutter Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:55667) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hNTwu-0002fg-KU for guix-patches@gnu.org; Sun, 05 May 2019 23:05:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hNTwt-0003Zs-6j for guix-patches@gnu.org; Sun, 05 May 2019 23:05:52 -0400 Received: from mail-pf1-x434.google.com ([2607:f8b0:4864:20::434]:33087) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hNTwr-0003UC-7N for guix-patches@gnu.org; Sun, 05 May 2019 23:05:51 -0400 Received: by mail-pf1-x434.google.com with SMTP id z28so5976518pfk.0 for ; Sun, 05 May 2019 20:05:43 -0700 (PDT) From: Calvin Pritchard Date: Sun, 5 May 2019 20:05:06 -0700 Message-Id: <20190506030507.5469-6-pritchard.calvin@gmail.com> In-Reply-To: <20190506030507.5469-1-pritchard.calvin@gmail.com> References: <20190506030507.5469-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