diff options
| author | Vinicius Monego <monego@posteo.net> | 2025-06-25 19:27:54 -0300 |
|---|---|---|
| committer | Vinicius Monego <monego@posteo.net> | 2025-06-26 00:42:00 -0300 |
| commit | 7d57257b09a7de334ed5896fdfe26d2f1d51cfa9 (patch) | |
| tree | d2ef20377e202598e6fb5e6ede1fdf01f05b4c52 /gnu/packages/python-xyz.scm | |
| parent | eb0c03e82c15439f6c3270d17713b0e298fda79d (diff) | |
gnu: python-pylatexenc: Use pyproject-build-system.
* gnu/packages/python-xyz.scm (python-pylatexenc)[source]: Remove
file-name.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools, python-wheel.
Change-Id: I96994cef50b30e4616d02d70b47ffd6bcd5c80ed
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 530ac8cbdc..7f5933a359 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -4116,14 +4116,14 @@ approximate nearest neighbor search with Python bindings.") (package (name "python-pylatexenc") (version "2.10") - (source (origin - (method url-fetch) - (uri (pypi-uri "pylatexenc" version)) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "1ls09z47b5md71gkxcj7fd87ynpvv2walgp2w6z31p26xf2gvn1x")))) - (build-system python-build-system) + (source + (origin + (method url-fetch) + (uri (pypi-uri "pylatexenc" version)) + (sha256 + (base32 "1ls09z47b5md71gkxcj7fd87ynpvv2walgp2w6z31p26xf2gvn1x")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest python-setuptools python-wheel)) (home-page "https://github.com/phfaist/pylatexenc") (synopsis "LaTeX parser for Unicode/LaTeX conversion") (description |
