[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/06: gnu: Add python-orderedmultidict.
From: |
Marius Bakke |
Subject: |
02/06: gnu: Add python-orderedmultidict. |
Date: |
Sun, 6 Nov 2016 20:03:12 +0000 (UTC) |
mbakke pushed a commit to branch master
in repository guix.
commit b91912c42a39bbc77f487ef30edf9ed409be5d21
Author: Danny Milosavljevic <address@hidden>
Date: Sat Nov 5 12:27:02 2016 +0100
gnu: Add python-orderedmultidict.
* gnu/packages/python.scm (python-orderedmultidict,
python2-orderedmultidict):
New variables.
Signed-off-by: Marius Bakke <address@hidden>
---
gnu/packages/python.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 20a0a74..cd74aa4 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -3882,6 +3882,48 @@ Python code against some of the style conventions in
`(("python2-setuptools" ,python2-setuptools)
,@(package-native-inputs base))))))
+(define-public python-orderedmultidict
+ (package
+ (name "python-orderedmultidict")
+ (version "0.7.10")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "orderedmultidict" version))
+ (sha256
+ (base32
+ "1gvqk0jd432wsn88kq4svad68xz3r012jfpnhh9in7bqrkyxidky"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'fix-tests
+ (lambda _
+ ;; The package uses nosetest for running the tests.
+ ;; Adding this initfile allows to run the test suite
+ ;; without requiring nosetest.
+ (zero? (system* "touch" "tests/__init__.py")))))))
+ (propagated-inputs
+ `(("python-six" ,python-six)))
+ (native-inputs
+ `(("python-pycodestyle" ,python-pycodestyle)))
+ (home-page "https://github.com/gruns/orderedmultidict")
+ (synopsis "Python Ordered Multivalue Dictionary - omdict")
+ (description "This package contains a library for ordered multivalue
+dictionaries. A multivalue dictionary is a dictionary that can store
+multiple values for the same key. An ordered multivalue dictionary is a
+multivalue dictionary that retains the order of insertions and deletions.")
+ (license license:unlicense)
+ (properties `((python2-variant . ,(delay python2-orderedmultidict))))))
+
+(define-public python2-orderedmultidict
+ (let ((base (package-with-python2 (strip-python2-variant
+ python-orderedmultidict))))
+ (package (inherit base)
+ (native-inputs
+ `(("python2-setuptools" ,python2-setuptools)
+ ,@(package-native-inputs base))))))
+
(define-public python-sqlalchemy-utils
(package
(name "python-sqlalchemy-utils")
- branch master updated (290ad22 -> 26d07ef), Marius Bakke, 2016/11/06
- 03/06: gnu: Add python-furl., Marius Bakke, 2016/11/06
- 06/06: gnu: python-sqlalchemy-utils: Use python-pytest., Marius Bakke, 2016/11/06
- 01/06: gnu: Add python-pycodestyle., Marius Bakke, 2016/11/06
- 05/06: gnu: python-sqlalchemy-utils: Propagate existing inputs., Marius Bakke, 2016/11/06
- 02/06: gnu: Add python-orderedmultidict.,
Marius Bakke <=
- 04/06: gnu: Add python-flask-babel., Marius Bakke, 2016/11/06