From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40993) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f1Rze-0007Cf-Db for guix-patches@gnu.org; Thu, 29 Mar 2018 03:29:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f1Rzc-0000O1-GU for guix-patches@gnu.org; Thu, 29 Mar 2018 03:29:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49994) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f1Rzc-0000Nv-CC for guix-patches@gnu.org; Thu, 29 Mar 2018 03:29:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f1Rzc-0008An-5s for guix-patches@gnu.org; Thu, 29 Mar 2018 03:29:04 -0400 Subject: [bug#30982] [PATCH 4/8] gnu: Add python-more-itertools. Resent-Message-ID: From: Arun Isaac Date: Thu, 29 Mar 2018 12:58:12 +0530 Message-Id: <20180329072816.3911-4-arunisaac@systemreboot.net> In-Reply-To: <20180329072816.3911-1-arunisaac@systemreboot.net> References: <20180329072816.3911-1-arunisaac@systemreboot.net> 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: 30982@debbugs.gnu.org * gnu/packages/python.scm (python-more-itertools, python2-more-itertools): New variables. --- gnu/packages/python.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 18811e8a7..ce89f21df 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -13110,3 +13110,28 @@ file system events on Linux.") (base32 "0svc9nla3b9145d6b7fb9dizx412l3difzqw0ilh9lz52nsixw8j")) (file-name (string-append name "-" version ".tar.gz")))))) + +(define-public python-more-itertools + (package + (name "python-more-itertools") + (version "4.1.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "more-itertools" version)) + (sha256 + (base32 + "0i3ch700g5fyjp692gprlnzbysl8w0sa2vijbp3s40drvk67xkn9")))) + (build-system python-build-system) + (propagated-inputs + `(("python-six" ,python-six))) + (home-page "https://github.com/erikrose/more-itertools") + (synopsis "More routines for operating on iterables, beyond itertools") + (description "Python's built-in @code{itertools} module implements a +number of iterator building blocks inspired by constructs from APL, Haskell, +and SML. @code{more-itertools} includes additional building blocks for +working with iterables.") + (license license:expat))) + +(define-public python2-more-itertools + (package-with-python2 python-more-itertools)) -- 2.15.1