From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49034) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fAO2d-0006tQ-Ko for guix-patches@gnu.org; Sun, 22 Apr 2018 19:05:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fAO2c-0006Zy-9B for guix-patches@gnu.org; Sun, 22 Apr 2018 19:05:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:56594) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fAO2c-0006ZX-4n for guix-patches@gnu.org; Sun, 22 Apr 2018 19:05:06 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fAO2b-00022B-QF for guix-patches@gnu.org; Sun, 22 Apr 2018 19:05:05 -0400 Subject: [bug#31241] [PATCH 08/13] gnu: Add python-multidict. Resent-Message-ID: From: Nicolas Goaziou Date: Mon, 23 Apr 2018 01:04:15 +0200 Message-Id: <20180422230420.30818-8-mail@nicolasgoaziou.fr> In-Reply-To: <20180422230420.30818-1-mail@nicolasgoaziou.fr> References: <20180422230420.30818-1-mail@nicolasgoaziou.fr> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31241@debbugs.gnu.org * 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 6ffd1ebbb..e5fbe579b 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3751,6 +3751,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") -- 2.17.0