gnu: python-orderedmultidict: Update to 1.0.1.
* gnu/packages/python-xyz.scm (python-orderedmultidict): Update to 1.0.1. [arguments]: Delete custom fix-tests phase. [native-inputs]: Add python-flake8. Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
This commit is contained in:
parent
272e8f5051
commit
1fc71de3ab
1 changed files with 4 additions and 13 deletions
|
@ -6682,29 +6682,20 @@ where key might be occurred more than once in the container.")
|
||||||
(define-public python-orderedmultidict
|
(define-public python-orderedmultidict
|
||||||
(package
|
(package
|
||||||
(name "python-orderedmultidict")
|
(name "python-orderedmultidict")
|
||||||
(version "1.0")
|
(version "1.0.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "orderedmultidict" version))
|
(uri (pypi-uri "orderedmultidict" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1idjbl933avgaadscrjw1np3xkvnz3phq0l8vw5qs0rqcjx9b65q"))))
|
"1bc2v0yflsxjyyjx4q9wqx0j3bvzcw9z87d5pz4iqac7bsxhn1q4"))))
|
||||||
(build-system python-build-system)
|
(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.
|
|
||||||
(with-output-to-file "tests/__init__.py" newline)
|
|
||||||
#t)))))
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-six" ,python-six)))
|
`(("python-six" ,python-six)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-pycodestyle" ,python-pycodestyle)))
|
`(("python-flake8" ,python-flake8)
|
||||||
|
("python-pycodestyle" ,python-pycodestyle)))
|
||||||
(home-page "https://github.com/gruns/orderedmultidict")
|
(home-page "https://github.com/gruns/orderedmultidict")
|
||||||
(synopsis "Python Ordered Multivalue Dictionary - omdict")
|
(synopsis "Python Ordered Multivalue Dictionary - omdict")
|
||||||
(description "This package contains a library for ordered multivalue
|
(description "This package contains a library for ordered multivalue
|
||||||
|
|
Reference in a new issue