* gnu/packages/python.scm (python-pip, python2-pip): Update to 9.0.1. --- gnu/packages/python.scm | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 39b40e7..2bf7ec9 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -6752,27 +6752,28 @@ 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) (inputs - `(("python-setuptools" ,python-setuptools) - ("python-virtualenv" ,python-virtualenv) - ;; Tests - ("python-mock" ,python-mock) - ("python-pytest" ,python-pytest) - ("python-scripttest" ,python-scripttest))) + `(("python-setuptools" ,python-setuptools) + ;; Tests requirements. + ("python-mock" ,python-mock) + ("python-pretend" ,python-pretend) + ("python-pytest" ,python-pytest) + ("python-scripttest" ,python-scripttest) + ("python-virtualenv" ,python-virtualenv))) (home-page "https://pip.pypa.io/") (synopsis - "Package manager for Python software") + "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))) -- 2.10.2