mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 13:09:23 -05:00
gnu: python-pip: Move to (gnu packages python-build).
* gnu/packages/python-xyz.scm (python-pip): Move from here ... * gnu/packages/python-build.scm (python-pip): ... to here.
This commit is contained in:
parent
6e7ed04033
commit
b4e2effb30
2 changed files with 21 additions and 21 deletions
|
@ -41,6 +41,27 @@ (define-module (gnu packages python-build)
|
||||||
;;;
|
;;;
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
|
(define-public python-pip
|
||||||
|
(package
|
||||||
|
(name "python-pip")
|
||||||
|
(version "22.2.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "pip" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0jwac0bhfp48w4fqibf1ysrs2grksdv92hwqm7bmdw2jn2fr5l9z"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:tests? #f)) ; there are no tests in the pypi archive.
|
||||||
|
(home-page "https://pip.pypa.io/")
|
||||||
|
(synopsis "Package manager for Python software")
|
||||||
|
(description
|
||||||
|
"Pip is a package manager for Python software, that finds packages on the
|
||||||
|
Python Package Index (PyPI).")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-setuptools
|
(define-public python-setuptools
|
||||||
(package
|
(package
|
||||||
(name "python-setuptools")
|
(name "python-setuptools")
|
||||||
|
|
|
@ -12835,27 +12835,6 @@ (define-public python-pretend
|
||||||
responses, rather than doing any computation.")
|
responses, rather than doing any computation.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public python-pip
|
|
||||||
(package
|
|
||||||
(name "python-pip")
|
|
||||||
(version "22.2.2")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (pypi-uri "pip" version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0jwac0bhfp48w4fqibf1ysrs2grksdv92hwqm7bmdw2jn2fr5l9z"))))
|
|
||||||
(build-system python-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:tests? #f)) ; there are no tests in the pypi archive.
|
|
||||||
(home-page "https://pip.pypa.io/")
|
|
||||||
(synopsis "Package manager for Python software")
|
|
||||||
(description
|
|
||||||
"Pip is a package manager for Python software, that finds packages on the
|
|
||||||
Python Package Index (PyPI).")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
;;; Variant used to break a dependency cycle with
|
;;; Variant used to break a dependency cycle with
|
||||||
;;; python-pytest-perf-bootstrap.
|
;;; python-pytest-perf-bootstrap.
|
||||||
(define-public python-pip-run-bootstrap
|
(define-public python-pip-run-bootstrap
|
||||||
|
|
Loading…
Reference in a new issue