[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/13: gnu: Add python-multidict.
From: |
Nicolas Goaziou |
Subject: |
08/13: gnu: Add python-multidict. |
Date: |
Fri, 11 May 2018 05:54:58 -0400 (EDT) |
ngz pushed a commit to branch master
in repository guix.
commit 25c591bf2e57489df441faf7471f4154b7c36955
Author: Nicolas Goaziou <address@hidden>
Date: Mon Apr 23 00:15:02 2018 +0200
gnu: Add python-multidict.
* gnu/packages/python.scm (python-multidict): New variable.
---
gnu/packages/python.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index ee9d061..13d73b5 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -3785,6 +3785,27 @@ Python code against some of the style conventions in
(define-public python2-pycodestyle
(package-with-python2 python-pycodestyle))
+(define-public python-multidict
+ (package
+ (name "python-multidict")
+ (version "4.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "multidict" version))
+ (sha256
+ (base32
+ "1vf5bq8hn5a9rvhr5v4fwbmarfsp35hhr8gs74kqfijy34j2f194"))))
+ (build-system python-build-system)
+ (native-inputs
+ `(("python-pytest" ,python-pytest)
+ ("python-pytest-runner" ,python-pytest-runner)))
+ (home-page "https://github.com/aio-libs/multidict/")
+ (synopsis "Multidict implementation")
+ (description "Multidict is dict-like collection of key-value pairs
+where key might be occurred more than once in the container.")
+ (license license:asl2.0)))
+
(define-public python-orderedmultidict
(package
(name "python-orderedmultidict")
- branch master updated (ef6a484 -> cb91f6a), Nicolas Goaziou, 2018/05/11
- 01/13: gnu: python-attrs: Update to 17.4.0., Nicolas Goaziou, 2018/05/11
- 03/13: gnu: Add python-pycares., Nicolas Goaziou, 2018/05/11
- 04/13: gnu: Add python-async-timeout., Nicolas Goaziou, 2018/05/11
- 09/13: gnu: Add python-aiodns., Nicolas Goaziou, 2018/05/11
- 07/13: gnu: Add python-pylibscrypt., Nicolas Goaziou, 2018/05/11
- 08/13: gnu: Add python-multidict.,
Nicolas Goaziou <=
- 10/13: gnu: Add python-yarl., Nicolas Goaziou, 2018/05/11
- 11/13: gnu: Add python-libnacl., Nicolas Goaziou, 2018/05/11
- 12/13: gnu: Add python-aiohttp., Nicolas Goaziou, 2018/05/11
- 13/13: gnu: Add python-duniterpy., Nicolas Goaziou, 2018/05/11
- 06/13: gnu: Add python-base58., Nicolas Goaziou, 2018/05/11
- 02/13: gnu: Add python-async-generator., Nicolas Goaziou, 2018/05/11
- 05/13: gnu: Add python-idna-ssl., Nicolas Goaziou, 2018/05/11