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 <ludo@gnu.org>
This commit is contained in:
parent
814b18e587
commit
392c26b0d1
|
@ -6771,26 +6771,21 @@ library.")
|
||||||
(define-public python-pip
|
(define-public python-pip
|
||||||
(package
|
(package
|
||||||
(name "python-pip")
|
(name "python-pip")
|
||||||
(version "8.0.2")
|
(version "9.0.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "pip" version))
|
(uri (pypi-uri "pip" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"08cm8d4228fj0qnrysy3qv1a6022zr3dcs25amd14lgxil6vvx26"))))
|
"03clr9c1dih5n9c00c592zzvf6r1ffimywkaq9agcqdllzhl7wh9"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(native-inputs
|
(arguments
|
||||||
`(;; Tests
|
'(#:tests? #f)) ; there are no tests in the pypi archive.
|
||||||
("python-virtualenv" ,python-virtualenv)
|
|
||||||
("python-mock" ,python-mock)
|
|
||||||
("python-pytest" ,python-pytest)
|
|
||||||
("python-scripttest" ,python-scripttest)))
|
|
||||||
(home-page "https://pip.pypa.io/")
|
(home-page "https://pip.pypa.io/")
|
||||||
(synopsis
|
(synopsis "Package manager for Python software")
|
||||||
"Package manager for Python software")
|
|
||||||
(description
|
(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).")
|
Python Package Index (PyPI).")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue