From 50de0102537c6c6029cc2631360a594984c448a0 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 5 Oct 2025 16:49:38 +0100 Subject: [PATCH] gnu: python-wget: Move to python-web. * gnu/packages/python-xyz.scm (python-wget): Move from here ... * gnu/packages/python-web.scm: ... to here. Change-Id: Iedab025163e518a84571ee98ec52d31296172d83 --- gnu/packages/python-web.scm | 21 +++++++++++++++++++++ gnu/packages/python-xyz.scm | 21 --------------------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 6ff1bfdb3797ec58d20f15a4606f985b43f50bec..18e0602210eb0aded7a424405cbe84c0723f4907 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -4330,6 +4330,27 @@ set out in RFC 7540 Section 5.3 (Stream Priority).") @url{https://weblate.org/, Weblate}i.") (license license:expat))) +;; XXX: See: . +(define-public python-wget + (package + (name "python-wget") + (version "3.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "wget" version ".zip")) + (sha256 + (base32 + "0qb0y7ipby42m4m7h0ipazpdyc3bn9xi46lvifcwwl5albn31rim")))) + (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 +with features similar to the @command{wget} utility.") + (license license:unlicense))) + (define-public python-wikidata (package (name "python-wikidata") diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4ba3ab40a2b9a81d3d6c492f8b67842c762b5598..180c9412110bdb3d222c191ae35e865c2788a3dd 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -32181,27 +32181,6 @@ file to ensure it completely and accurately describes your project.") files. These files are used to translate strings in android apps.") (license license:expat))) -;; XXX: See: . -(define-public python-wget - (package - (name "python-wget") - (version "3.2") - (source - (origin - (method url-fetch) - (uri (pypi-uri "wget" version ".zip")) - (sha256 - (base32 - "0qb0y7ipby42m4m7h0ipazpdyc3bn9xi46lvifcwwl5albn31rim")))) - (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 -with features similar to the @command{wget} utility.") - (license license:unlicense))) - (define-public offlate (package (name "offlate")