From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58604) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f2O2d-00011Q-2I for guix-patches@gnu.org; Sat, 31 Mar 2018 17:28:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f2O2c-00085I-7t for guix-patches@gnu.org; Sat, 31 Mar 2018 17:28:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:53659) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f2O2c-00084q-3z for guix-patches@gnu.org; Sat, 31 Mar 2018 17:28:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f2O2b-0004Gm-SE for guix-patches@gnu.org; Sat, 31 Mar 2018 17:28:01 -0400 Subject: [bug#31010] [PATCH] gnu: Add python-empy. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58203) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f2O2G-0000q9-Hj for guix-patches@gnu.org; Sat, 31 Mar 2018 17:27:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f2O2F-0007Mv-M0 for guix-patches@gnu.org; Sat, 31 Mar 2018 17:27:40 -0400 From: Mathieu Lirzin Date: Sat, 31 Mar 2018 23:27:33 +0200 Message-Id: <20180331212733.22204-1-mthl@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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: 31010@debbugs.gnu.org Cc: Mathieu Lirzin * gnu/packages/python.scm (python-empy): New variable. (python2-empy): Use 'package-with-python-2'. --- gnu/packages/python.scm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 9e038ef4f..84578fe02 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -48,6 +48,7 @@ ;;; Copyright © 2018 Ethan R. Jones ;;; Copyright © 2018 Vijayalakshmi Vedantham +;;; Copyright © 2018 Mathieu Lirzin ;;; This file is part of GNU Guix. ;;; @@ -1304,9 +1305,9 @@ applications. dogtail scripts are written in Python and executed like any other Python program.") (license license:gpl2+))) -(define-public python2-empy +(define-public python-empy (package - (name "python2-empy") + (name "python-empy") (version "3.3") (source (origin (method url-fetch) @@ -1339,6 +1340,9 @@ system is highly configurable via command line options and embedded commands.") (license license:lgpl2.1+))) +(define-public python2-empy + (package-with-python2 python-empy)) + (define-public python2-element-tree (package (name "python2-element-tree") -- 2.16.3