diff options
| -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 |
