summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/python-build.scm21
-rw-r--r--gnu/packages/python-xyz.scm21
2 files changed, 21 insertions, 21 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 7572bc5ce3f..716108df2b0 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -41,6 +41,27 @@
41;;; 41;;;
42;;; Code: 42;;; Code:
43 43
44(define-public python-pip
45 (package
46 (name "python-pip")
47 (version "22.2.2")
48 (source
49 (origin
50 (method url-fetch)
51 (uri (pypi-uri "pip" version))
52 (sha256
53 (base32
54 "0jwac0bhfp48w4fqibf1ysrs2grksdv92hwqm7bmdw2jn2fr5l9z"))))
55 (build-system python-build-system)
56 (arguments
57 '(#:tests? #f)) ; there are no tests in the pypi archive.
58 (home-page "https://pip.pypa.io/")
59 (synopsis "Package manager for Python software")
60 (description
61 "Pip is a package manager for Python software, that finds packages on the
62Python Package Index (PyPI).")
63 (license license:expat)))
64
44(define-public python-setuptools 65(define-public python-setuptools
45 (package 66 (package
46 (name "python-setuptools") 67 (name "python-setuptools")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 27dbbd831d6..75b99086d02 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -12835,27 +12835,6 @@ fakes, or doubles. Basically, a stub is an object that returns pre-canned
12835responses, rather than doing any computation.") 12835responses, rather than doing any computation.")
12836 (license license:bsd-3))) 12836 (license license:bsd-3)))
12837 12837
12838(define-public python-pip
12839 (package
12840 (name "python-pip")
12841 (version "22.2.2")
12842 (source
12843 (origin
12844 (method url-fetch)
12845 (uri (pypi-uri "pip" version))
12846 (sha256
12847 (base32
12848 "0jwac0bhfp48w4fqibf1ysrs2grksdv92hwqm7bmdw2jn2fr5l9z"))))
12849 (build-system python-build-system)
12850 (arguments
12851 '(#:tests? #f)) ; there are no tests in the pypi archive.
12852 (home-page "https://pip.pypa.io/")
12853 (synopsis "Package manager for Python software")
12854 (description
12855 "Pip is a package manager for Python software, that finds packages on the
12856Python Package Index (PyPI).")
12857 (license license:expat)))
12858
12859;;; Variant used to break a dependency cycle with 12838;;; Variant used to break a dependency cycle with
12860;;; python-pytest-perf-bootstrap. 12839;;; python-pytest-perf-bootstrap.
12861(define-public python-pip-run-bootstrap 12840(define-public python-pip-run-bootstrap