[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#31241] [PATCH 10/13] gnu: Add python-yarl.
From: |
Nicolas Goaziou |
Subject: |
[bug#31241] [PATCH 10/13] gnu: Add python-yarl. |
Date: |
Mon, 23 Apr 2018 01:04:17 +0200 |
* gnu/packages/python.scm (python-yarl): New variable.
---
gnu/packages/python.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index e5fbe579b..a518630b2 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -13190,3 +13190,27 @@ in Python. You can simply type pybtex instead of
bibtex.")
(description "Python one-time password library for HMAC-based (HOTP) and
time-based (TOTP) passwords.")
(license license:expat)))
+
+(define-public python-yarl
+ (package
+ (name "python-yarl")
+ (version "1.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "yarl" version))
+ (sha256
+ (base32
+ "1s6z13g8vgxfkkqwhn6imnm7pl7ky9arv4jygnn6bcndcbidg7d6"))))
+ (build-system python-build-system)
+ (native-inputs
+ `(("python-pytest" ,python-pytest)
+ ("python-pytest-runner" ,python-pytest-runner)))
+ (propagated-inputs
+ `(("python-idna" ,python-idna)
+ ("python-multidict" ,python-multidict)))
+ (home-page "https://github.com/aio-libs/yarl/")
+ (synopsis "Yet another URL library")
+ (description "@code{yarl} module provides handy @code{URL} class
+for URL parsing and changing.")
+ (license license:asl2.0)))
--
2.17.0
- [bug#31241] [PATCH 00/13] Add Duniter's bindings for Python, Nicolas Goaziou, 2018/04/22
- [bug#31241] [PATCH 01/13] gnu: python-attrs: Update to 17.4.0., Nicolas Goaziou, 2018/04/22
- [bug#31241] [PATCH 03/13] gnu: Add python-pycares., Nicolas Goaziou, 2018/04/22
- [bug#31241] [PATCH 04/13] gnu: Add python-async-timeout., Nicolas Goaziou, 2018/04/22
- [bug#31241] [PATCH 02/13] gnu: Add python-async-generator., Nicolas Goaziou, 2018/04/22
- [bug#31241] [PATCH 09/13] gnu: Add python-aiodns., Nicolas Goaziou, 2018/04/22
- [bug#31241] [PATCH 07/13] gnu: Add python-pylibscrypt., Nicolas Goaziou, 2018/04/22
- [bug#31241] [PATCH 08/13] gnu: Add python-multidict., Nicolas Goaziou, 2018/04/22
- [bug#31241] [PATCH 05/13] gnu: Add python-idna-ssl., Nicolas Goaziou, 2018/04/22
- [bug#31241] [PATCH 06/13] gnu: Add python-base58., Nicolas Goaziou, 2018/04/22
- [bug#31241] [PATCH 10/13] gnu: Add python-yarl.,
Nicolas Goaziou <=
- [bug#31241] [PATCH 13/13] gnu: Add python-duniterpy., Nicolas Goaziou, 2018/04/22
- [bug#31241] [PATCH 11/13] gnu: Add python-libnacl., Nicolas Goaziou, 2018/04/22
- [bug#31241] [PATCH 12/13] gnu: Add python-aiohttp., Nicolas Goaziou, 2018/04/22
- [bug#31241] [PATCH 00/13] Add Duniter's bindings for Python, Ludovic Courtès, 2018/04/26