diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-29 14:23:35 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-29 14:23:35 +0100 |
| commit | 6dfc28ab1ef6cd86372ac3caf4f6350a7b20aeea (patch) | |
| tree | 1a690f004125cd5562f8fc971001352e47fc34dd /gnu/packages | |
| parent | 3f3cec89932673f1d0b039bef469f14ce2f0cbcd (diff) | |
gnu: Add python-uritools.
* gnu/packages/python-xyz.scm (python-uritools): New variable.
Change-Id: If1dee2e2f62f8610fb74e2180541c2951d841b92
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 438895a3735..3da5cbfc9bc 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -39547,6 +39547,31 @@ package updates.") adherence to RFC 6570, but adds a few extensions.") (license license:expat))) +(define-public python-uritools + (package + (name "python-uritools") + (version "6.0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tkem/uritools/") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "115a8xphnv0ykd4c0pjh5rd4zy92znpdv4nwbn7n2d6irznvk00v")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools)) + (home-page "https://github.com/tkem/uritools/") + (synopsis "URI parsing, classification and composition") + (description + "This package provides RFC 3986 compliant functions for parsing, +classifying and composing URIs and URI references, largely replacing the +Python Standard Library's urllib.parse module.") + (license license:expat))) + (define-public python-urwid (package (name "python-urwid") |
