diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-25 11:47:04 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-26 10:36:55 +0000 |
| commit | e2438542676a700bcad167eb5be11e94c7360e0b (patch) | |
| tree | 8130a4436e94881ce798a43e9109eb730fefab20 /gnu/packages/python-xyz.scm | |
| parent | f41d7cc700b9b080d4fb791f4ac632fc79b9c377 (diff) | |
gnu: python-svgutils: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-svgutils)[build-system]: Switch to
pyproject-build-system.
[arguments] <tests?>: No tests in PyPI archive.
[native-inputs]: Add python-setuptools.
Change-Id: Ic84b861d21605e1ecb2917552f439784585594e9
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 394dd451ef2..050e89da95f 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -30927,9 +30927,12 @@ that may need or want to use SVG files as geometric data.") (method url-fetch) (uri (pypi-uri "svgutils" version)) (sha256 - (base32 - "0lz0w2ajdvwd269a7ppnzawmx8px0116j0nx8xvhlihxrd28zx4y")))) - (build-system python-build-system) + (base32 "0lz0w2ajdvwd269a7ppnzawmx8px0116j0nx8xvhlihxrd28zx4y")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ;no test in PyPI archive, depend on Nose + (native-inputs + (list python-setuptools)) (propagated-inputs (list python-lxml)) (home-page "https://svgutils.readthedocs.io") |
