mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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
This commit is contained in:
parent
56cbfffc4e
commit
33210bced4
2 changed files with 8 additions and 4 deletions
|
@ -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.
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue