[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/46: gnu: Add python-rfc3986-validator.
From: |
guix-commits |
Subject: |
05/46: gnu: Add python-rfc3986-validator. |
Date: |
Tue, 7 May 2024 18:33:58 -0400 (EDT) |
rekado pushed a commit to branch python-team
in repository guix.
commit 60bd69d3558a1b5702525a9497d989fef210f9e7
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue May 7 15:42:10 2024 +0200
gnu: Add python-rfc3986-validator.
* gnu/packages/python-xyz.scm (python-rfc3986-validator): New variable.
Change-Id: If63c2d8798bc8efd021e6ab008cd5017b3dc7fd1
---
gnu/packages/python-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 603f5208e8..0b1d1278cd 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -24751,6 +24751,30 @@ manipulation, or @code{stdout}.")
which adds support for zone identifiers to IPv6 addresses.")
(license license:asl2.0)))
+(define-public python-rfc3986-validator
+ (package
+ (name "python-rfc3986-validator")
+ (version "0.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "rfc3986_validator" version))
+ (sha256
+ (base32 "0mfh82r37ma5n54n8ibnqvmwr3j3f2ixqfjfmv1rwfqvjbkvsi1x"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pip
+ python-pytest
+ python-pytest-runner
+ python-rfc3987
+ python-setuptools
+ python-wheel))
+ (home-page "https://github.com/naimetti/rfc3986-validator")
+ (synopsis "Pure python rfc3986 validator")
+ (description "This package implements a URI validator according to RFC3986
+in pure Python.")
+ (license license:expat)))
+
(define-public python-rfc3987
(package
(name "python-rfc3987")
- branch python-team updated (569256f3e6 -> e2a0660c37), guix-commits, 2024/05/07
- 04/46: gnu: Add python-jsonschema-specifications., guix-commits, 2024/05/07
- 01/46: gnu: python-rich: Remove python-ipywidgets., guix-commits, 2024/05/07
- 05/46: gnu: Add python-rfc3986-validator.,
guix-commits <=
- 07/46: gnu: Add python-uri-template., guix-commits, 2024/05/07
- 09/46: gnu: Add python-overrides., guix-commits, 2024/05/07
- 10/46: gnu: Add python-hatch-jupyter-builder., guix-commits, 2024/05/07
- 13/46: gnu: Add python-nbclassic., guix-commits, 2024/05/07
- 02/46: gnu: Add python-pep440., guix-commits, 2024/05/07
- 03/46: gnu: Add python-referencing., guix-commits, 2024/05/07
- 06/46: gnu: Add python-isoduration., guix-commits, 2024/05/07
- 29/46: gnu: python-trio: Use pyproject-build-system., guix-commits, 2024/05/07
- 30/46: gnu: python-jupyter-client: Update to 7.4.4., guix-commits, 2024/05/07
- 35/46: gnu: Add python-jupyter-server-terminals., guix-commits, 2024/05/07