guix-commits
[Top][All Lists]
Advanced

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

07/150: gnu: python-pep517-bootstrap: Update to 0.12.0.


From: guix-commits
Subject: 07/150: gnu: python-pep517-bootstrap: Update to 0.12.0.
Date: Sun, 24 Apr 2022 05:12:15 -0400 (EDT)

lbraun pushed a commit to branch wip-python-pep517
in repository guix.

commit fb0fef8901375982e5fdee535bc08a1d0af57a98
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Sat Dec 4 08:57:06 2021 +0100

    gnu: python-pep517-bootstrap: Update to 0.12.0.
    
    * gnu/packages/python-build.scm (python-pep517-bootstrap): Update to 0.12.0.
    [propagated-inputs]: Use python-tomli instead of python-toml.
    [native-inputs]: Add python-flit-core-bootstrap.
---
 gnu/packages/python-build.scm | 25 +++++++++++++++----------
 1 file changed, 15 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index f7b722df7d..427fbe52bb 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -383,19 +383,24 @@ Python file, so it can be easily copied into your 
project.")
   (hidden-package
    (package
      (name "python-pep517-bootstrap")
-     (version "0.9.1")
-     (source
-      (origin
-        (method url-fetch)
-        (uri (pypi-uri "pep517" version))
-        (sha256
-         (base32
-          "0zqidxah03qpnp6zkg3zd1kmd5f79hhdsfmlc0cldaniy80qddxf"))))
+     (version "0.12.0")
+     (source (origin
+               (method git-fetch)
+               (uri (git-reference
+                     (url "https://github.com/pypa/pep517";)
+                     (commit (string-append "v" version))))
+               (file-name (git-file-name name version))
+               (sha256
+                (base32
+                 "1giljizqy337lhbhx7m0lbxw9fvsjqd97fgkf3i0mw3p7wpn3jy7"))))
      (build-system python-build-system)
      (arguments
-      `(#:tests? #f))                     ;to avoid circular dependencies
+      `(#:tests? #f)) ; To avoid circular dependencies.
      (propagated-inputs
-      (list python-toml python-wheel))
+      (list python-tomli python-wheel))
+     (native-inputs
+      ;; Build system.
+      (list python-flit-core-bootstrap))
      (home-page "https://github.com/pypa/pep517";)
      (synopsis "Wrappers to build Python packages using PEP 517 hooks")
      (description



reply via email to

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