diff options
| author | Cyril Roelandt <tipecaml@gmail.com> | 2015-10-12 23:33:52 +0200 |
|---|---|---|
| committer | Cyril Roelandt <tipecaml@gmail.com> | 2015-11-03 21:38:13 +0100 |
| commit | 465b61fcd638e9dffe2cdd6d52f36bd692fab9a9 (patch) | |
| tree | 157b33b29cc3ca0f6228f4893a3098eb56a30fa9 | |
| parent | 39d3f2edce74247f09e7461f79e98a24ce18f89e (diff) | |
gnu: Add python-tempest-lib.
* gnu/packages/openstack.scm (python-tempest-lib,
python2-tempest-lib): New variables.
| -rw-r--r-- | gnu/packages/openstack.scm | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index 308590e4fe1..daec050922f 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm | |||
| @@ -354,6 +354,51 @@ extensions.") | |||
| 354 | (define-public python2-stevedore | 354 | (define-public python2-stevedore |
| 355 | (package-with-python2 python-stevedore)) | 355 | (package-with-python2 python-stevedore)) |
| 356 | 356 | ||
| 357 | (define-public python-tempest-lib | ||
| 358 | (package | ||
| 359 | (name "python-tempest-lib") | ||
| 360 | (version "0.9.0") | ||
| 361 | (source | ||
| 362 | (origin | ||
| 363 | (method url-fetch) | ||
| 364 | (uri (pypi-uri "tempest-lib" version)) | ||
| 365 | (sha256 | ||
| 366 | (base32 | ||
| 367 | "1s32rpxw86p41ip9nr7zbqxd60mw1cqz2isirby36rh4vl68bfhx")))) | ||
| 368 | (build-system python-build-system) | ||
| 369 | (arguments | ||
| 370 | `(#:phases | ||
| 371 | (modify-phases %standard-phases | ||
| 372 | (add-before | ||
| 373 | 'check 'pre-check | ||
| 374 | (lambda _ | ||
| 375 | (substitute* "tempest_lib/tests/cli/test_execute.py" | ||
| 376 | (("/bin/ls") (which "ls")))))))) | ||
| 377 | (propagated-inputs | ||
| 378 | `(("python-fixtures" ,python-fixtures) | ||
| 379 | ("python-httplib2" ,python-httplib2) | ||
| 380 | ("python-iso8601" ,python-iso8601) | ||
| 381 | ("python-jsonschema" ,python-jsonschema) | ||
| 382 | ("python-oslo.log" ,python-oslo.log) | ||
| 383 | ("python-paramiko" ,python-paramiko) | ||
| 384 | ("python-pbr" ,python-pbr) | ||
| 385 | ("python-six" ,python-six))) | ||
| 386 | (inputs | ||
| 387 | `(("python-babel" ,python-babel) | ||
| 388 | ("python-mock" ,python-mock) | ||
| 389 | ("python-os-testr" ,python-os-testr) | ||
| 390 | ("python-oslotest" ,python-oslotest) | ||
| 391 | ("python-setuptools" ,python-setuptools))) | ||
| 392 | (home-page "http://www.openstack.org/") | ||
| 393 | (synopsis "OpenStack functional testing library") | ||
| 394 | (description | ||
| 395 | "Tempest-lib is a functional testing library for OpenStack. It provides | ||
| 396 | common features used in Tempest.") | ||
| 397 | (license asl2.0))) | ||
| 398 | |||
| 399 | (define-public python2-tempest-lib | ||
| 400 | (package-with-python2 python-tempest-lib)) | ||
| 401 | |||
| 357 | ;; Packages from the Oslo library | 402 | ;; Packages from the Oslo library |
| 358 | (define-public python-oslo.config | 403 | (define-public python-oslo.config |
| 359 | (package | 404 | (package |
