GNU bug report logs - #63139
[PATCH python 00/20] Updates for pyproject-build-system, poetry, python-yubikey-manager

Previous Next

Package: guix-patches;

Reported by: John Kehayias <john.kehayias <at> protonmail.com>

Date: Fri, 28 Apr 2023 05:46:01 UTC

Severity: normal

Tags: patch

Full log


View this message in rfc822 format

From: John Kehayias <john.kehayias <at> protonmail.com>
To: 63139 <at> debbugs.gnu.org
Cc: John Kehayias <john.kehayias <at> protonmail.com>
Subject: [bug#63139] [PATCH python 14/20] gnu: Update python-pypa-build to 1.0.0.
Date: Fri, 28 Apr 2023 05:51:27 +0000
* gnu/packages/python-build.scm (python-pypa-build): Rename to...
(python-pypa-build-bootstrap): ... this.
(python-pypa-build): Update to 1.0.0.
---
 gnu/packages/python-build.scm | 39 +++++++++++++++++++++++++++++++++--
 1 file changed, 37 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 45b9f52b68..090f0d2274 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -502,9 +502,9 @@ (define-public python-packaging-bootstrap

 ;;; The name 'python-pypa-build' is chosen rather than 'python-build' to avoid
 ;;; a name clash with python-build from (guix build-system python).
-(define-public python-pypa-build
+(define-public python-pypa-build-bootstrap
   (package
-    (name "python-pypa-build")
+    (name "python-pypa-build-bootstrap")
     (version "0.7.0")
     (source (origin
               (method url-fetch)
@@ -534,6 +534,41 @@ (define-public python-pypa-build
 order to make bootstrapping easier.")
     (license license:expat)))

+(define-public python-pypa-build
+  (package
+    (inherit python-pypa-build-bootstrap)
+    (name "python-pypa-build")
+    (version "0.10.0")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "build" version))
+              (sha256
+               (base32
+                "0scj5k586n8rmnlqhay5j43ci1z8ip3sm0j4f3b52nfvmxj15dym"))))
+    (arguments
+     (list
+      #:tests? #f ; avoid needing pytest as an input
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'use-toml-instead-of-tomli
+            ;; Using toml instead of tomli eases bootstrapping.
+            (lambda _
+              (substitute* "pyproject.toml"
+                (("'tomli.*")
+                 "'toml'"))))
+          (replace 'build
+            (lambda _
+              ;(setenv "PYTHONPATH" ".")
+              (invoke "python" "-m" "build" "--wheel" "--no-isolation" ".")))
+          (replace 'install
+            (lambda _
+              (let ((whl (car (find-files "dist" "\\.whl$"))))
+                (invoke "pip" "--no-cache-dir" "--no-input"
+                        "install" "--no-deps" "--prefix" #$output
+                        "--ignore-installed" whl)))))))
+    (native-inputs (list python-flit-core-bootstrap python-pypa-build-bootstrap))
+    (propagated-inputs (list python-pyproject-hooks))))
+
 (define-public python-poetry-core
   (package
     (name "python-poetry-core")
--
2.39.2






This bug report was last modified 1 year and 119 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.