diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 14:30:36 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:48 +0100 |
| commit | 9122f3929f1509efdf7767cbf29e2d56bcc9efea (patch) | |
| tree | 2bbbafc6c1f6eeb80bf6aebf1aa621947d149508 /gnu/packages/python-xyz.scm | |
| parent | c7114c8a9ccc30be48e12d89018b8589756dbf07 (diff) | |
gnu: python-rfc3987: Update to 1.3.8.
* gnu/packages/python-xyz.scm (python-rfc3987): Update to 1.3.8.
[build-system]: Use pyproject.
[arguments] <test-backend>: Use 'custom.
[native-inputs]: Add python-setuptools.
Change-Id: Ia1f62b969de5ba0eeab3c0cc48bccb3b9c703522
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d98becd60d..40c6e2a98f 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -26937,15 +26937,21 @@ in pure Python.") (define-public python-rfc3987 (package (name "python-rfc3987") - (version "1.3.7") + (version "1.3.8") (source (origin (method url-fetch) (uri (pypi-uri "rfc3987" version)) (sha256 (base32 - "192pclzs2y0yaywqkrlvd0x73740q310kvqvm6jldhi619mq59wi")))) - (build-system python-build-system) + "0cx7bhyjaylwnf9armxrkb3r0s37vf0vqf3bhbll9mb0lmbx5i6k")))) + (build-system pyproject-build-system) + (arguments + (list #:test-backend #~'custom + #:test-flags #~(list "-m" "doctest" "rfc3987.py"))) + (native-inputs + (list python-setuptools)) + ;; Source: <https://codeberg.org/atufi/rfc3987>. (home-page "https://pypi.org/project/rfc3987/") (synopsis "Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987)") (description "@code{rfc3987} provides routines for parsing and |
