From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 04/11] gnu: Add python-munch. Date: Wed, 14 Dec 2016 12:25:19 +0000 Message-ID: <20161214122526.4458-5-ng0@libertad.pw> References: <20161212151837.GA24973@jasmine> <20161214122526.4458-1-ng0@libertad.pw> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49467) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cH8dJ-0003l3-37 for guix-devel@gnu.org; Wed, 14 Dec 2016 07:26:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cH8dG-0005N9-MX for guix-devel@gnu.org; Wed, 14 Dec 2016 07:26:05 -0500 Received: from aibo.runbox.com ([91.220.196.211]:60752) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cH8dG-0005Mc-GE for guix-devel@gnu.org; Wed, 14 Dec 2016 07:26:02 -0500 Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cH8dF-0000Nm-6a for guix-devel@gnu.org; Wed, 14 Dec 2016 13:26:01 +0100 In-Reply-To: <20161214122526.4458-1-ng0@libertad.pw> 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-devel@gnu.org * gnu/packages/python.scm (python-munch): New variable. --- gnu/packages/python.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 9ebdbc420..8578b917b 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3260,6 +3260,28 @@ capabilities.") (define python2-numpy-bootstrap (package-with-python2 python-numpy-bootstrap)) +(define-public python-munch + (package + (name "python-munch") + (version "2.0.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "munch" version)) + (sha256 + (base32 + "1cmqg91xnqx8gvnh4pmp0bfl1dfcm65d5p9mg73zz8pkjhx6h80l")))) + (build-system python-build-system) + (home-page "https://github.com/Infinidat/munch") + (synopsis "Dot-accessible dictionary") + (description + "Munch is a dot-accessible dictionary similar to +JavaScript objects.") + (license license:expat))) + +(define-public python2-munch + (package-with-python2 python-munch)) + (define-public python2-fastlmm (package (name "python2-fastlmm") -- 2.11.0