guix_mirror_bot pushed a commit to branch master
in repository guix.
commit bf44cde2b753c7405264cf51baa1350afefb39b2
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Oct 24 13:15:50 2025 +0100
gnu: python-tldextract: Update to 5.3.0.
* gnu/packages/python-xyz.scm (python-tldextract): Update to 5.3.0.
[native-inputs]: Remove python-wheel; add python-syrupy.
Change-Id: Ic8090573c34e1f9e1ae6aca61b8ff81457aa6005
---
gnu/packages/python-xyz.scm | 26 +++++++++++++++-----------
1 file changed, 15 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a0cd957e4c..f1b309ba8f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -28868,23 +28868,27 @@ identifying what the file is.")
(define-public python-tldextract
(package
(name "python-tldextract")
- (version "3.3.0")
+ (version "5.3.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "tldextract" version))
(sha256
- (base32 "1wac4yvcpgqjvls770mfx165amvy7gr00nnd2w24bqqwyamj9kdd"))))
+ (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-wheel))
- (propagated-inputs (list python-filelock python-idna python-requests
- python-requests-file))
+ (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")