diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-05 16:26:17 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-05 17:09:10 +0100 |
| commit | 1f20f40861c1ef9a7c5968a3a388f956f989f1fd (patch) | |
| tree | b8274216fac0b857ef408c2f2c16ce538889502a /gnu/packages/python-xyz.scm | |
| parent | 0d889d8523deaaad1b4a2a194eb8dc3883e9b228 (diff) | |
gnu: python-wget: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-wget)[build-system]: Switch to
pyproject-build-system.
[arguments]<tests?>: No tests.
[native-inputs]: Add python-setuptools.
Change-Id: I8dcef2313f8bca61adbe805a87294b37c79267ce
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e0af14b291..11f78c710e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -32273,6 +32273,7 @@ operating systems and an elegant approach to concurrency using threading.") (define-deprecated/alias python-watchgod python-watchfiles) (export python-watchgod) +;; XXX: See: <https://codeberg.org/guix/guix/issues/3321>. (define-public python-wget (package (name "python-wget") @@ -32284,8 +32285,9 @@ operating systems and an elegant approach to concurrency using threading.") (sha256 (base32 "0qb0y7ipby42m4m7h0ipazpdyc3bn9xi46lvifcwwl5albn31rim")))) - (build-system python-build-system) - (native-inputs (list unzip)) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ;no tests + (native-inputs (list python-setuptools unzip)) (home-page "https://bitbucket.org/techtonik/python-wget/") (synopsis "Pure Python download utility") (description "The python-wget library provides an API to download files |
