gnu: python-oslotest: Update to 3.2.0.
* gnu/packages/openstack.scm (python-oslotest): Update to 3.2.0. [source](uri): Use PYPI-URI. [native-inputs]: Move PYTHON-OS-CLIENT-CONFIG, PYTHON-SIX, PYTHON-SUBUNIT, PYTHON-TESTREPOSITORY and PYTHON-TESTTOOLS ... [propagated-inputs]: ... here. [properties]: Remove field. (python2-oslotest)[arguments]: Remove.master
parent
ae565a9a6d
commit
be3f88c29c
|
@ -623,45 +623,36 @@ from the OpenStack project.")
|
||||||
(define-public python-oslotest
|
(define-public python-oslotest
|
||||||
(package
|
(package
|
||||||
(name "python-oslotest")
|
(name "python-oslotest")
|
||||||
(version "1.10.0")
|
(version "3.2.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (pypi-uri "oslotest" version))
|
||||||
"https://pypi.python.org/packages/source/o/oslotest/oslotest-"
|
|
||||||
version
|
|
||||||
".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0l3ny48ddz5xbf0v4r0jv1yhbdzinc2vy0lybhdkmx3xy0b886fs"))))
|
"1xay6wjxzqm4bg87fahqas84dhvhgf1gghzldkcczsfx897mqdkh"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-fixtures" ,python-fixtures)
|
`(("python-fixtures" ,python-fixtures)
|
||||||
("python-mock" ,python-mock)
|
("python-mock" ,python-mock)
|
||||||
("python-mox3" ,python-mox3)
|
("python-mox3" ,python-mox3)
|
||||||
("python-six" ,python-six)))
|
|
||||||
(native-inputs
|
|
||||||
`(("python-pbr" ,python-pbr)
|
|
||||||
("python-os-client-config" ,python-os-client-config)
|
("python-os-client-config" ,python-os-client-config)
|
||||||
|
("python-six" ,python-six)
|
||||||
("python-subunit" ,python-subunit)
|
("python-subunit" ,python-subunit)
|
||||||
("python-testrepository" ,python-testrepository)
|
("python-testrepository" ,python-testrepository)
|
||||||
("python-testscenarios" ,python-testscenarios)
|
|
||||||
("python-testtools" ,python-testtools)))
|
("python-testtools" ,python-testtools)))
|
||||||
|
(native-inputs
|
||||||
|
`(("python-pbr" ,python-pbr)
|
||||||
|
("python-testscenarios" ,python-testscenarios)))
|
||||||
(home-page "https://launchpad.net/oslo")
|
(home-page "https://launchpad.net/oslo")
|
||||||
(synopsis "Oslo test framework")
|
(synopsis "Oslo test framework")
|
||||||
(description
|
(description
|
||||||
"The Oslo Test framework provides common fixtures, support for debugging,
|
"The Oslo Test framework provides common fixtures, support for debugging,
|
||||||
and better support for mocking results.")
|
and better support for mocking results.")
|
||||||
(properties `((python2-variant . ,(delay python2-oslotest))))
|
|
||||||
(license asl2.0)))
|
(license asl2.0)))
|
||||||
|
|
||||||
(define-public python2-oslotest
|
(define-public python2-oslotest
|
||||||
(package (inherit (package-with-python2
|
(package-with-python2 python-oslotest))
|
||||||
(strip-python2-variant python-oslotest)))
|
|
||||||
(arguments
|
|
||||||
`(#:python ,python-2
|
|
||||||
;; FIXME: 'subunit.run discover: error: no such option: --list'
|
|
||||||
#:tests? #f))))
|
|
||||||
|
|
||||||
(define-public python-oslo.utils
|
(define-public python-oslo.utils
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue