me
/
guix
Archived
1
0
Fork 0

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.
master
Tobias Geerinckx-Rice 2017-06-19 13:29:06 +02:00
parent 5150d8b4b4
commit 3b66438983
No known key found for this signature in database
GPG Key ID: 91CCDB9B48541B99
1 changed files with 15 additions and 14 deletions

View File

@ -113,32 +113,33 @@ manner.")
(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-testscenarios" ,python-testscenarios))) ("python-eventlet" ,python-eventlet)
("python-mock" ,python-mock)
("python-reno" ,python-reno)
("python-testrepository" ,python-testrepository)
("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")
(description (description
"Python-hacking is a set of flake8 plugins that test and enforce the "Python-hacking is a set of flake8 plugins that test and enforce the
@uref{http://docs.openstack.org/developer/hacking/, OpenStack style @uref{http://docs.openstack.org/developer/hacking/, OpenStack style
guidelines}.") guidelines}.")
(license asl2.0))) (license asl2.0)))