summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-08-04 22:09:49 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:02 +0100
commitd00e263ae8e8e5bd3b3dcd6089b62e68e6af9adf (patch)
treed546af0673e3bf93e0fd87e81bd6a6551030ab63
parenta607f1e4918a4ad3e53b4c6394077d10e06def26 (diff)
gnu: python-rfc3986: Update to 2.0.0.
* gnu/packages/python-xyz.scm (python-rfc3986): Update to 2.0.0. [build-system]: Use pyproject. [native-inputs]: Add python-setuptools. Change-Id: I7adcfe876d56cf152eeed27519268dddaf4fbfe5
-rw-r--r--gnu/packages/python-xyz.scm28
1 files changed, 11 insertions, 17 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f9ebf485e5..63aa0b6a8e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -26907,28 +26907,22 @@ conversion: Gamut A, B, and C.")
(define-public python-rfc3986
(package
(name "python-rfc3986")
- (version "1.4.0")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "rfc3986" version))
- (sha256
- (base32
- "17dvx15m3r49bmif5zlli8kzjd6bys6psixzbp14sd5367d9h8qi"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda _
- (invoke "pytest" "-v"))))))
+ (version "2.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "rfc3986" version))
+ (sha256
+ (base32 "0716rg74cpmhi9f77ypnwcdsyfjplsgk1rnnmadq5zabpnfwzalp"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-pytest))
+ (list python-pytest python-setuptools))
(home-page "https://rfc3986.readthedocs.io/")
(synopsis "Parse and validate URI references")
(description
"@code{rfc3986} is a Python implementation of RFC@tie{}3986 including
- validation and authority parsing. This module also supports RFC@tie{}6874
- which adds support for zone identifiers to IPv6 addresses.")
+validation and authority parsing. This module also supports RFC@tie{}6874
+which adds support for zone identifiers to IPv6 addresses.")
(license license:asl2.0)))
(define-public python-rfc3986-validator