mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 22:26:40 -05:00
gnu: python-hacking: Update to 0.13.0.
* gnu/packages/openstack.scm (python-hacking): Update to 0.13.0. [arguments]: Re-enable tests. [propagated-inputs]: Use latest python-flake8. [native-inputs]: Add python-eventlet, python-mock, python-reno, and python-testrepository for tests.
This commit is contained in:
parent
5150d8b4b4
commit
3b66438983
1 changed files with 15 additions and 14 deletions
|
@ -113,27 +113,28 @@ (define-public python2-debtcollector
|
||||||
(define-public python-hacking
|
(define-public python-hacking
|
||||||
(package
|
(package
|
||||||
(name "python-hacking")
|
(name "python-hacking")
|
||||||
(version "0.10.2")
|
(version "0.13.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "hacking" version))
|
(uri (pypi-uri "hacking" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1a310k3dv04jg7zvmk37h2ql7y9kf4hvdxb74bjlwdxgmy6h4wap"))))
|
"1s1wq2sds6fjp8rwz31vkp33kjl9nyk5y2g2pri8shic75dr00h4"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
|
||||||
;; TODO: Requires unpackaged 'eventlet'.
|
|
||||||
'(#:tests? #f))
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-flake8-2.2.4" ,python-flake8-2.2.4)
|
`(("python-flake8" ,python-flake8)
|
||||||
("python-mccabe-0.2.1" ,python-mccabe-0.2.1)
|
("python-mccabe-0.2.1" ,python-mccabe-0.2.1)
|
||||||
("python-pbr" ,python-pbr)
|
("python-pbr" ,python-pbr)
|
||||||
("python-pep8-1.5.7" ,python-pep8-1.5.7)
|
("python-pep8-1.5.7" ,python-pep8-1.5.7)
|
||||||
("python-pyflakes-0.8.1" ,python-pyflakes-0.8.1)
|
("python-pyflakes-0.8.1" ,python-pyflakes-0.8.1)
|
||||||
("python-six" ,python-six)))
|
("python-six" ,python-six)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(;; Tests
|
`( ;; Tests
|
||||||
|
("python-eventlet" ,python-eventlet)
|
||||||
|
("python-mock" ,python-mock)
|
||||||
|
("python-reno" ,python-reno)
|
||||||
|
("python-testrepository" ,python-testrepository)
|
||||||
("python-testscenarios" ,python-testscenarios)))
|
("python-testscenarios" ,python-testscenarios)))
|
||||||
(home-page "https://github.com/openstack-dev/hacking")
|
(home-page "https://github.com/openstack-dev/hacking")
|
||||||
(synopsis "OpenStack hacking guideline enforcement")
|
(synopsis "OpenStack hacking guideline enforcement")
|
||||||
|
|
Loading…
Reference in a new issue