guix-commits
[Top][All Lists]
Advanced

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

03/05: gnu: python-packaging-bootstrap: Update to 23.2.


From: guix-commits
Subject: 03/05: gnu: python-packaging-bootstrap: Update to 23.2.
Date: Tue, 27 Feb 2024 15:56:55 -0500 (EST)

rekado pushed a commit to branch python-team
in repository guix.

commit 84fbc0aadaeabbe3f8b4702446d93e6b7e4b2668
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Feb 27 21:06:59 2024 +0100

    gnu: python-packaging-bootstrap: Update to 23.2.
    
    * gnu/packages/python-build.scm (python-packaging-bootstrap): Update to 
23.2.
    [build-system]: Use pyproject-build-system.
    [native-inputs]: Add python-flit-core.
    * gnu/packages/python-xyz.scm (python-packaging)
    [native-inputs]: Add python-flit-core.
    
    Change-Id: I5d3bdec62aabfe1b5e6de988d210862ad6da9002
---
 gnu/packages/python-build.scm | 8 +++++---
 gnu/packages/python-xyz.scm   | 4 +++-
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 6033616431..3633841eeb 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -430,18 +430,20 @@ that client code uses to construct the grammar directly 
in Python code.")
 (define-public python-packaging-bootstrap
   (package
     (name "python-packaging-bootstrap")
-    (version "21.3")
+    (version "23.2")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "packaging" version))
        (sha256
         (base32
-         "1sygirdrqgv4f1ckh9nhpcw1yfidrh3qjl86wq8vk6nq4wlw8iyx"))))
-    (build-system python-build-system)
+         "1ifgjb0d0bnnm78hv3mnl7hi233m7jamb2plma752djh83lv13q4"))))
+    (build-system pyproject-build-system)
     (arguments `(#:tests? #f))         ;disabled to avoid extra dependencies
     (propagated-inputs
      (list python-pyparsing python-six-bootstrap))
+    (native-inputs
+     (list python-flit-core))
     (home-page "https://github.com/pypa/packaging";)
     (synopsis "Core utilities for Python packages")
     (description "Packaging is a Python module for dealing with Python 
packages.
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f58e151adc..b98373865d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -23692,7 +23692,9 @@ manipulation, or @code{stdout}.")
                       (if tests?
                           (invoke "pytest" "-vv")
                           (format #t "test suite not run~%")))))))
-    (native-inputs (list python-pretend python-pytest))
+    (native-inputs
+     (list python-flit-core
+           python-pretend python-pytest))
     (propagated-inputs (list python-pyparsing python-six))
     (home-page "https://github.com/pypa/packaging";)
     (synopsis "Core utilities for Python packages")



reply via email to

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