summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-24 13:15:50 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-24 15:27:35 +0100
commitbf44cde2b753c7405264cf51baa1350afefb39b2 (patch)
treeeaebc3c2c52a4883c64154628527924841d7859f
parent05d1383b7a098f9e47ece3743cf96d66e8c93654 (diff)
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
-rw-r--r--gnu/packages/python-xyz.scm26
1 files changed, 15 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a0cd957e4c2..f1b309ba8fa 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")