mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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
This commit is contained in:
parent
6033ef97f5
commit
3c4b23c23e
1 changed files with 11 additions and 17 deletions
|
@ -26931,28 +26931,22 @@ conversion: Gamut A, B, and C.")
|
||||||
(define-public python-rfc3986
|
(define-public python-rfc3986
|
||||||
(package
|
(package
|
||||||
(name "python-rfc3986")
|
(name "python-rfc3986")
|
||||||
(version "1.4.0")
|
(version "2.0.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (pypi-uri "rfc3986" version))
|
(method url-fetch)
|
||||||
(sha256
|
(uri (pypi-uri "rfc3986" version))
|
||||||
(base32
|
(sha256
|
||||||
"17dvx15m3r49bmif5zlli8kzjd6bys6psixzbp14sd5367d9h8qi"))))
|
(base32 "0716rg74cpmhi9f77ypnwcdsyfjplsgk1rnnmadq5zabpnfwzalp"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
|
||||||
`(#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(replace 'check
|
|
||||||
(lambda _
|
|
||||||
(invoke "pytest" "-v"))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest))
|
(list python-pytest python-setuptools))
|
||||||
(home-page "https://rfc3986.readthedocs.io/")
|
(home-page "https://rfc3986.readthedocs.io/")
|
||||||
(synopsis "Parse and validate URI references")
|
(synopsis "Parse and validate URI references")
|
||||||
(description
|
(description
|
||||||
"@code{rfc3986} is a Python implementation of RFC@tie{}3986 including
|
"@code{rfc3986} is a Python implementation of RFC@tie{}3986 including
|
||||||
validation and authority parsing. This module also supports RFC@tie{}6874
|
validation and authority parsing. This module also supports RFC@tie{}6874
|
||||||
which adds support for zone identifiers to IPv6 addresses.")
|
which adds support for zone identifiers to IPv6 addresses.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public python-rfc3986-validator
|
(define-public python-rfc3986-validator
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue