[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
69/361: gnu: Add python-uri-template.
From: |
guix-commits |
Subject: |
69/361: gnu: Add python-uri-template. |
Date: |
Fri, 22 Nov 2024 06:00:14 -0500 (EST) |
andreas pushed a commit to branch python-team
in repository guix.
commit 180c0ee9902ced62b7bdadcbdc62830b79a2277b
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue May 7 20:17:57 2024 +0200
gnu: Add python-uri-template.
* gnu/packages/python-xyz.scm (python-uri-template): New variable.
Change-Id: I2ff3995bc5741da0147a335c5f14f169a8001153
---
gnu/packages/python-xyz.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 20abf63453..6419295948 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -13204,6 +13204,35 @@ computing.")
texlive-xetex
texlive-xindy))))))
+(define-public python-uri-template
+ (package
+ (name "python-uri-template")
+ (version "1.3.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "uri-template" version))
+ (sha256
+ (base32 "1ixczlgnsjv2850r6w0cb2npwcwzdqri8njr1pi7v371cpmzh00f"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:phases
+ '(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "python3" "test.py")))))))
+ (native-inputs
+ (list python-setuptools
+ python-setuptools-scm
+ python-wheel))
+ (home-page "https://gitlab.linss.com/open-source/python/uri-template")
+ (synopsis "RFC 6570 URI Template Processor")
+ (description "This packages implements URI Template expansion in strict
+adherence to RFC 6570, but adds a few extensions.")
+ (license license:expat)))
+
(define-public python-urwid
(package
(name "python-urwid")
- 312/361: gnu: python-pytest-cov: Update to 6.0.0., (continued)
- 312/361: gnu: python-pytest-cov: Update to 6.0.0., guix-commits, 2024/11/22
- 316/361: gnu: python-cffi: Improve package style., guix-commits, 2024/11/22
- 318/361: gnu: python-parso: Update to 0.8.4., guix-commits, 2024/11/22
- 329/361: gnu: python-cython-3: Update to 3.0.11., guix-commits, 2024/11/22
- 335/361: gnu: python-numpy: Update to 1.24.4., guix-commits, 2024/11/22
- 336/361: gnu: python-isort: Update to 5.13.2., guix-commits, 2024/11/22
- 352/361: gnu: python-apispec: Update to 6.7.1., guix-commits, 2024/11/22
- 53/361: gnu: python-dbus-python: Add missing input., guix-commits, 2024/11/22
- 64/361: gnu: Add python-pep440., guix-commits, 2024/11/22
- 73/361: gnu: Add python-pytest-jupyter., guix-commits, 2024/11/22
- 69/361: gnu: Add python-uri-template.,
guix-commits <=
- 66/361: gnu: Add python-jsonschema-specifications., guix-commits, 2024/11/22
- 79/361: gnu: python-argon2-cffi: Update to 21.1.0., guix-commits, 2024/11/22
- 80/361: gnu: python-jsonschema: Update to 4.22.0., guix-commits, 2024/11/22
- 89/361: gnu: python-nbformat: Update to 5.10.4., guix-commits, 2024/11/22
- 111/361: gnu: python-graphql-core: Enable tests., guix-commits, 2024/11/22
- 211/361: gnu: python-numpydoc: Move to pyproject-build-sytem., guix-commits, 2024/11/22
- 215/361: gnu: python-matplotlib: Ignore failing tests., guix-commits, 2024/11/22
- 165/361: gnu: python-pytest-runner: Improve package style., guix-commits, 2024/11/22
- 172/361: gnu: python-flask-login: Move to pyproject-build-system., guix-commits, 2024/11/22
- 175/361: gnu: python-sphinx-autodoc-typehints: Move to pyproject-build-system., guix-commits, 2024/11/22