guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: python-pip: Update to 9.0.1


From: Ludovic Courtès
Subject: 01/02: gnu: python-pip: Update to 9.0.1
Date: Mon, 9 Jan 2017 14:56:05 +0000 (UTC)

civodul pushed a commit to branch master
in repository guix.

commit 392c26b0d1edc4ead2f3e4d507a334dd3ae8a12f
Author: Maxim Cournoyer <address@hidden>
Date:   Mon Nov 28 16:30:07 2016 -0800

    gnu: python-pip: Update to 9.0.1
    
    * gnu/packages/python.scm (python-pip): Update to 9.0.1.
    [native-inputs]: Remove.
    [arguments]: New field.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/python.scm |   17 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 13e0287..1fd02f7 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -6771,26 +6771,21 @@ library.")
 (define-public python-pip
   (package
     (name "python-pip")
-    (version "8.0.2")
+    (version "9.0.1")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "pip" version))
        (sha256
         (base32
-         "08cm8d4228fj0qnrysy3qv1a6022zr3dcs25amd14lgxil6vvx26"))))
+         "03clr9c1dih5n9c00c592zzvf6r1ffimywkaq9agcqdllzhl7wh9"))))
     (build-system python-build-system)
-    (native-inputs
-      `(;; Tests
-        ("python-virtualenv" ,python-virtualenv)
-        ("python-mock" ,python-mock)
-        ("python-pytest" ,python-pytest)
-        ("python-scripttest" ,python-scripttest)))
+    (arguments
+     '(#:tests? #f))          ; there are no tests in the pypi archive.
     (home-page "https://pip.pypa.io/";)
-    (synopsis
-      "Package manager for Python software")
+    (synopsis "Package manager for Python software")
     (description
-      "Pip is a package manager for Python software, that finds packages on the
+     "Pip is a package manager for Python software, that finds packages on the
 Python Package Index (PyPI).")
     (license license:expat)))
 



reply via email to

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