gnu: Add python-multidict.
* gnu/packages/python.scm (python-multidict): New variable.
This commit is contained in:
parent
c158d47627
commit
25c591bf2e
1 changed files with 21 additions and 0 deletions
|
@ -3785,6 +3785,27 @@ (define-public python-pycodestyle
|
||||||
(define-public python2-pycodestyle
|
(define-public python2-pycodestyle
|
||||||
(package-with-python2 python-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
|
(define-public python-orderedmultidict
|
||||||
(package
|
(package
|
||||||
(name "python-orderedmultidict")
|
(name "python-orderedmultidict")
|
||||||
|
|
Loading…
Reference in a new issue