From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 08/12] gnu: python: Add python-schematics. Date: Fri, 5 Aug 2016 20:37:26 +0200 Message-ID: <20160805183730.19049-8-david@craven.ch> References: <20160805183730.19049-2-david@craven.ch> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41453) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bVk0r-0001aa-8Q for guix-devel@gnu.org; Fri, 05 Aug 2016 14:38:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bVk0q-0008UF-2a for guix-devel@gnu.org; Fri, 05 Aug 2016 14:38:29 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:60897) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bVk0o-0008Oo-Ri for guix-devel@gnu.org; Fri, 05 Aug 2016 14:38:27 -0400 In-Reply-To: <20160805183730.19049-2-david@craven.ch> 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 Cc: David Craven * gnu/packages/python.scm (python-schematics): New package. (python2-schematics): New package. --- gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 3eab007..2627dc8 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -9904,3 +9904,32 @@ binary or text.") (define-public python2-sh (package-with-python2 python-sh)) + +(define-public python-schematics + (package + (name "python-schematics") + (version "1.1.1") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/schematics/schematics/archive/v" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "19v1i69bf3bzarfxmbv0v6ivpcn758x3shvbiy9l2hy0lvqwnp6l")))) + (build-system python-build-system) + (propagated-inputs + `(("python-six" ,python-six))) + (inputs + `(("python-setuptools" ,python-setuptools))) + (arguments + `(#:tests? #f)) ; requires a bunch of not very nice packages with fixed + ; version requirements (eg python-coveralls) + (home-page "https://github.com/schematics/schematics") + (synopsis "Python Data Structures for Humans") + (description "Python Data Structures for Humans.") + (license license:bsd-3))) + +(define-public python2-schematics + (package-with-python2 python-schematics)) -- 2.9.0