gnu: python-pypa-build: Update to 0.7.0.

* gnu/packages/python-build.scm (python-pypa-build): Update to 0.7.0.
[phases]{relax-requirements}: Rename to...
{use-toml-instead-of-tomli}: ... this.  Replace tomli by toml.
This commit is contained in:
Maxim Cournoyer 2021-10-01 11:16:49 -04:00
parent 05e3638bb9
commit b734ce06e1
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -250,26 +250,26 @@ (define-public python2-packaging-bootstrap
(define-public python-pypa-build
(package
(name "python-pypa-build")
(version "0.1.0")
(version "0.7.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "build" version))
(sha256
(base32
"1d6m21lijwm04g50nwgsgj7x3vhblzw7jv05ah8psqgzk20bbch8"))))
"17xqija27x4my1yrnk6q2vwln60r39g2dhby9zg2l99qjgbdrahs"))))
(build-system python-build-system)
(arguments
`(#:tests? #f ;to tests in the PyPI release
#:phases (modify-phases %standard-phases
(add-after 'unpack 'relax-requirements
(add-after 'unpack 'use-toml-instead-of-tomli
;; Using toml instead of tomli eases bootstrapping.
(lambda _
(substitute* "setup.cfg"
;; Drop the requirement on python-packaging, which is
;; not required.
((".*packaging.*")
"")))))))
(("tomli>=.*")
"toml\n")))))))
(propagated-inputs
`(("python-pep517", python-pep517-bootstrap)
`(("python-packaging" ,python-packaging-bootstrap)
("python-pep517", python-pep517-bootstrap)
("python-toml" ,python-toml)))
(home-page "https://pypa-build.readthedocs.io/en/latest/")
(synopsis "Simple Python PEP 517 package builder")