guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#63139] [PATCH python 01/20] gnu: Add python-installer.


From: John Kehayias
Subject: [bug#63139] [PATCH python 01/20] gnu: Add python-installer.
Date: Fri, 28 Apr 2023 05:49:49 +0000

* gnu/packages/python-xyz.scm (python-installer): New variable.
---
 gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e2d082091f..83beb1c8ef 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1329,6 +1329,24 @@ (define-public python-d2to1
 distribute/setuptools setup.py script.")
     (license license:bsd-2)))

+(define-public python-installer
+  (package
+    (name "python-installer")
+    (version "0.7.0")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "installer" version))
+              (sha256
+               (base32
+                "0cdnqh3a3amw8k4s1pzfjh0hpvzw4pczgl702s1b16r82qqkwvd2"))))
+    (build-system pyproject-build-system)
+    (native-inputs (list python-flit-core python-pytest))
+    (home-page "https://installer.readthedocs.io/";)
+    (synopsis "A library for installing Python wheels.")
+    (description
+     "This package provides a library for installing Python wheels.")
+    (license license:expat)))
+
 (define-public python-rawkit
   (package
     (name "python-rawkit")
--
2.39.2







reply via email to

[Prev in Thread] Current Thread [Next in Thread]