summaryrefslogtreecommitdiff
path: root/gnu/packages/python-build.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/python-build.scm')
-rw-r--r--gnu/packages/python-build.scm21
1 files changed, 21 insertions, 0 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")