diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-02-27 21:06:59 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:18:32 +0000 |
commit | 33210bced42287ae96b28b51fe22c2e4a2d7afa2 (patch) | |
tree | 021e29480a6f56d0bdcd7b6f3cab3cec9021aa1f | |
parent | 56cbfffc4ed3323f3e63ea5934d1383386845559 (diff) |
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
-rw-r--r-- | gnu/packages/python-build.scm | 8 | ||||
-rw-r--r-- | 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 e8cb8d0264..e18fe27fb1 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -472,18 +472,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 f8fba89a76..422ba34498 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25219,7 +25219,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") |