gnu: python-oslo.context: Disable tests.

* gnu/packages/openstack.scm (python-oslo.context,
  python2-oslo.context)[arguments]: Set #:tests? #f.
  [native-inputs]: Add python-coverage, python-hacking, python-mock,
  python-os-client-config, python-oslosphinx and python-sphinx.
This commit is contained in:
Marius Bakke 2016-12-15 13:31:31 +01:00
parent 767c7e0ed1
commit f30e53369b
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -405,11 +405,19 @@ (define-public python-oslo.context
(base32
"0kvha0rs9295njyl2z6n6zm5dapi5mrl5zwjm0m6ldqrvccyf8c3"))))
(build-system python-build-system)
(arguments
'(#:tests? #f)) ; FIXME: Requires python-mock >= 1.2.
(native-inputs
`(("python-babel" ,python-babel)
("python-pbr" ,python-pbr)
;; Tests.
("python-oslotest" ,python-oslotest)))
("python-coverage" ,python-coverage)
("python-hacking" ,python-hacking)
("python-mock" ,python-mock)
("python-os-client-config" ,python-os-client-config)
("python-oslotest" ,python-oslotest)
("python-oslosphinx" ,python-oslosphinx)
("python-sphinx" ,python-sphinx)))
(home-page "http://launchpad.net/oslo")
(synopsis "Oslo context library")
(description