From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH 26/31] gnu: Add python-pip. Date: Fri, 5 Sep 2014 11:18:32 -0400 Message-ID: <1409930317-13220-26-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]:33158) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPvIM-0001hH-Gz for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XPvIG-0003mz-G7 for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:26 -0400 Received: from na3sys009aog118.obsmtp.com ([74.125.149.244]:57847) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPvIG-0003mD-2z for guix-devel@gnu.org; Fri, 05 Sep 2014 11:19:20 -0400 Received: by mail-yk0-f179.google.com with SMTP id 142so7131240ykq.38 for ; Fri, 05 Sep 2014 08:19:19 -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-pip, python2-pip): New variables. --- gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index cb783e6..3638382 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1731,3 +1731,32 @@ environments and back.") (define-public python2-virtualenv (package-with-python2 python-virtualenv)) +(define-public python-pip + (package + (name "python-pip") + (version "1.5.6") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/source/p/pip/pip-" + version ".tar.gz")) + (sha256 + (base32 + "0v3jy7cxq57yiv7811qzx8lgl1i71k2kfksybaq7w6zjp9kax95i")))) + (build-system python-build-system) + (inputs + `(("python-setuptools" ,python-setuptools) + ("python-mock" ,python-mock) + ("python-pytest" ,python-pytest) + ("python-scripttest" ,python-scripttest) + ("python-virtualenv" ,python-virtualenv))) + (home-page "https://pip.pypa.io/") + (synopsis "Python package manager") + (description + "Pip is a tool for installing and managing Python packages.") + (license expat))) + +(define-public python2-pip + (package-with-python2 python-pip)) + -- 2.0.1