From 14b94d20c90cfd8c38f22a492879ec81468d5a42 Mon Sep 17 00:00:00 2001 From: SqrtMinusOne Date: Tue, 4 Jan 2022 21:38:18 +0300 Subject: [PATCH] fix(lieer): add python-uritemplate3 --- lieer.scm | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/lieer.scm b/lieer.scm index d4e60ad..f2bb3ad 100644 --- a/lieer.scm +++ b/lieer.scm @@ -159,6 +159,27 @@ (description "Google Authentication Library") (license license:asl2.0))) +(define-public python-uritemplate-3 + (package + (name "python-uritemplate") + (version "3.0.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "uritemplate" version)) + (sha256 + (base32 + "1bkwmgr0ia9gcn4bszs2xlvml79f0bi2s4a87xg22ky9rq8avy2s")))) + (build-system python-build-system) + (home-page "https://uritemplate.readthedocs.org") + (synopsis "Library to deal with URI Templates") + (description "@code{uritemplate} provides Python library to deal with URI +Templates.") + ;; The software is made available under the terms of *either* of the + ;; licenses found in LICENSE.APACHE or LICENSE.BSD. Contributions + ;; are made under *both* licenses (excerpt from the LICENSE file). + (license (list license:bsd-2 license:asl2.0)))) + (define-public python-google-api-python-client (package (name "python-google-api-python-client") @@ -181,7 +202,7 @@ ,python-google-auth-httplib2) ("python-httplib2" ,python-httplib20) ("python-six" ,python-six) - ("python-uritemplate" ,python-uritemplate))) + ("python-uritemplate" ,python-uritemplate3))) (home-page "https://github.com/googleapis/google-api-python-client/") (synopsis "Google API Client Library for Python")