guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 26/31] gnu: Add python-pip.


From: David Thompson
Subject: [PATCH 26/31] gnu: Add python-pip.
Date: Fri, 5 Sep 2014 11:18:32 -0400

* 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]