From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH 11/31] gnu: Add python-py. Date: Fri, 5 Sep 2014 11:18:17 -0400 Message-ID: <1409930317-13220-11-git-send-email-dthompson2@worcester.edu> References: <1409930317-13220-1-git-send-email-dthompson2@worcester.edu> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:32822) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPvI3-000138-6B for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XPvHv-0003ac-EY for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:07 -0400 Received: from na3sys009aog116.obsmtp.com ([74.125.149.240]:40483) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPvHv-0003aS-6a for guix-devel@gnu.org; Fri, 05 Sep 2014 11:18:59 -0400 Received: by mail-yk0-f169.google.com with SMTP id q200so7149225ykb.14 for ; Fri, 05 Sep 2014 08:18:58 -0700 (PDT) In-Reply-To: <1409930317-13220-1-git-send-email-dthompson2@worcester.edu> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/python.scm (python-py, python2-py): New variables. --- gnu/packages/python.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index a68c0b5..6ef19d5 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1065,6 +1065,32 @@ standard library.") `(#:python ,python-2 #:tests? #f)))) ; no setup.py test command +(define-public python-py + (package + (name "python-py") + (version "1.4.23") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/source/p/py/py-" + version ".tar.gz")) + (sha256 + (base32 + "1jkhffpai419v5rickm2vz86p9bkg3b3kcm2k4bi5wfajhw2m3xs")))) + (build-system python-build-system) + (inputs + `(("python-setuptools" ,python-setuptools))) + (home-page "http://pylib.readthedocs.org/") + (synopsis "Python library for parsing, I/O, instrospection, and logging") + (description + "Py is a Python library for path parsing, .ini file parsing, I/O, code +introspection, and logging.") + (license expat))) + +(define-public python2-py + (package-with-python2 python-py)) + (define-public behave (package (name "behave") -- 2.0.1