diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-10-05 13:32:12 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-05 17:09:11 +0100 |
| commit | d0e5d4ac9dfd4eff2625c9f74182f774a148e346 (patch) | |
| tree | 2138c871962e9ac0623cba9216f3f3a963f10dfa /gnu/packages/python-xyz.scm | |
| parent | 03ca423612ff3025dc768511ce5d1d4e41c05e2c (diff) | |
gnu: python-tempdir: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-tempdir):
[build-system]: Switch to pyproject-build-system.
[arguments]: Relocate field.
[native-inputs]: Add python-setuptools.
Change-Id: Ia8cf0fb11a11ca741c78724e69f1aed17b4363c8
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 514678b037..4f7228c5f8 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -28104,13 +28104,11 @@ Angus Johnson's polygon clipping Clipper library (ver. 6.4.2).") (method url-fetch) (uri (pypi-uri "tempdir" version)) (sha256 - (base32 - "13msyyxqbicr111a294x7fsqbkl6a31fyrqflx3q7k547gnq15k8")))) - (build-system python-build-system) + (base32 "13msyyxqbicr111a294x7fsqbkl6a31fyrqflx3q7k547gnq15k8")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ; No tests. + (native-inputs (list python-setuptools)) (home-page "https://pypi.org/project/tempdir/") - (arguments - ;; the package has no tests - '(#:tests? #f)) (synopsis "Python library for managing temporary directories") (description "This library manages temporary directories that are automatically |
