guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 9c0cd9d38c39622118895f46f2896426b099bdf1
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Oct 24 13:24:08 2025 +0100

    gnu: python-tldextract: Move to python-web.
    
    * gnu/packages/python-xyz.scm (python-tldextract): Move from here ...
    * gnu/packages/python-web.scm: ... to here.
    
    Change-Id: I0f1a50cca00e7d61877a86f81625f41d40782006
---
 gnu/packages/python-web.scm | 35 +++++++++++++++++++++++++++++++++++
 gnu/packages/python-xyz.scm | 34 ----------------------------------
 2 files changed, 35 insertions(+), 34 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 3716b68115..c40a37b4d4 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -23,6 +23,7 @@
 ;;; Copyright © 2017 Oleg Pykhalov <[email protected]>
 ;;; Copyright © 2015, 2016 David Thompson <[email protected]>
 ;;; Copyright © 2017 Mark Meyer <[email protected]>
+;;; Copyright © 2018 Clément Lassieur <[email protected]>
 ;;; Copyright © 2018 Tomáš Čech <[email protected]>
 ;;; Copyright © 2018, 2019, 2021, 2024 Nicolas Goaziou <[email protected]>
 ;;; Copyright © 2018 Mathieu Othacehe <[email protected]>
@@ -3930,6 +3931,40 @@ high-speed transfers via libcurl and frequently 
outperforms alternatives.")
     ;; under the terms of LGPLv2.1+ or Expat.
     (license (list license:lgpl2.1+ license:expat))))
 
+(define-public python-tldextract
+  (package
+    (name "python-tldextract")
+    (version "5.3.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "tldextract" version))
+       (sha256
+        (base32 "02c6cyh8f3dagcw786m9nl5y0n3xa98p5mb7d7xfr84l2l5bglmk"))))
+    (build-system pyproject-build-system)
+    (native-inputs
+     (list nss-certs-for-test
+           python-pytest
+           python-pytest-mock
+           python-responses
+           python-setuptools
+           python-setuptools-scm
+           python-syrupy))
+    (propagated-inputs
+     (list python-filelock
+           python-idna
+           python-requests
+           python-requests-file))
+    (home-page "https://github.com/john-kurkowski/tldextract";)
+    (synopsis
+     "Separate the TLD from the registered domain and subdomains of a URL")
+    (description
+     "TLDExtract accurately separates the TLD from the registered domain and
+subdomains of a URL, using the Public Suffix List.  By default, this includes
+the public ICANN TLDs and their exceptions.  It can optionally support the
+Public Suffix List's private domains as well.")
+    (license license:bsd-3)))
+
 (define-public python-tracerite
   (package
     (name "python-tracerite")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f1b309ba8f..f7d66ad818 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -28865,40 +28865,6 @@ a file (or some information about a file), return a 
set of standardized tags
 identifying what the file is.")
     (license license:expat)))
 
-(define-public python-tldextract
-  (package
-    (name "python-tldextract")
-    (version "5.3.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (pypi-uri "tldextract" version))
-       (sha256
-        (base32 "02c6cyh8f3dagcw786m9nl5y0n3xa98p5mb7d7xfr84l2l5bglmk"))))
-    (build-system pyproject-build-system)
-    (native-inputs
-     (list nss-certs-for-test
-           python-pytest
-           python-pytest-mock
-           python-responses
-           python-setuptools
-           python-setuptools-scm
-           python-syrupy))
-    (propagated-inputs
-     (list python-filelock
-           python-idna
-           python-requests
-           python-requests-file))
-    (home-page "https://github.com/john-kurkowski/tldextract";)
-    (synopsis
-     "Separate the TLD from the registered domain and subdomains of a URL")
-    (description
-     "TLDExtract accurately separates the TLD from the registered domain and
-subdomains of a URL, using the Public Suffix List.  By default, this includes
-the public ICANN TLDs and their exceptions.  It can optionally support the
-Public Suffix List's private domains as well.")
-    (license license:bsd-3)))
-
 (define-public tldr
   (package
     (name "tldr")

Reply via email to