diff options
Diffstat (limited to 'gnu/packages/openstack.scm')
| -rw-r--r-- | gnu/packages/openstack.scm | 84 |
1 files changed, 81 insertions, 3 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index e2672668d..5bb83095a 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -19,6 +19,7 @@ ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (gnu packages openstack) + #:use-module (gnu packages gnupg) #:use-module (gnu packages python) #:use-module (gnu packages ssh) #:use-module (gnu packages tls) @@ -81,6 +82,8 @@ all the files it generates a report.") (base32 "0g4dfskaiy47rhsh4gh66l5vmdsrgq0qk68pl3ix1cj3ffvfndzv")))) (build-system python-build-system) + (arguments + '(#:tests? #f)) ;FIXME: Requires packaging python-doc8. (propagated-inputs `(("python-six" ,python-six) ("python-wrapt" ,python-wrapt))) @@ -113,6 +116,9 @@ manner.") (base32 "1a310k3dv04jg7zvmk37h2ql7y9kf4hvdxb74bjlwdxgmy6h4wap")))) (build-system python-build-system) + (arguments + ;; TODO: Requires unpackaged 'eventlet'. + '(#:tests? #f)) (propagated-inputs `(("python-flake8-2.2.4" ,python-flake8-2.2.4) ("python-mccabe-0.2.1" ,python-mccabe-0.2.1) @@ -146,9 +152,14 @@ guidelines}.") (base32 "0njmh40i1lg5mzn9hc2ax83adj6dli455j6xifilrw27c4wlkjzx")))) (build-system python-build-system) + (arguments + ;; TODO: Resolve dependency cycle and re-enable. + '(#:tests? #f)) (native-inputs `(("python-fixtures" ,python-fixtures) + ; TODO re-add ("python-oslosphinx" ,python-oslosphinx) ("python-pbr" ,python-pbr) + ("python-sphinx" ,python-sphinx) ("python-testtools" ,python-testtools))) (home-page "http://www.openstack.org/") (synopsis "Mock object framework for Python") @@ -282,10 +293,13 @@ portions of your testing code.") (native-inputs `(("python-pbr" ,python-pbr) ;; Tests + ("python-discover" ,python-discover) ("python-docutils" ,python-docutils) ("python-mock" ,python-mock) + ("python-oslosphinx" ,python-oslosphinx) ("python-oslotest" ,python-oslotest) - ("python-sphinx" ,python-sphinx))) + ("python-sphinx" ,python-sphinx) + ("python-testrepository" ,python-testrepository))) (home-page "https://github.com/dreamhost/stevedore") (synopsis "Manage dynamic plugins for Python applications") (description @@ -315,7 +329,8 @@ extensions.") "1cpp2vwmawpd29hjsklsps181lq2ah91cl412qvpnz228nf9sqn5")))) (build-system python-build-system) (arguments - `(#:phases + `(#:tests? #f ; FIXME: Requires oslo.log >= 1.14.0. + #:phases (modify-phases %standard-phases (add-before 'check 'pre-check @@ -362,6 +377,8 @@ common features used in Tempest.") (base32 "13r778jfb0fhna37c2pd1f2xipnsbd7zli7qhn96acrzymrwj5k1")))) (build-system python-build-system) + (arguments + '(#:tests? #f)) ; FIXME: Requires packaging python-argparse. (propagated-inputs `(("python-netaddr" ,python-netaddr) ("python-six" ,python-six) @@ -395,11 +412,19 @@ common features used in Tempest.") (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 @@ -423,6 +448,8 @@ pipeline and used by various modules such as logging.") (base32 "0bpb1c20sm8my650gl824nzaip83bfn8hr91s65k5ncmyh8hb6pl")))) (build-system python-build-system) + (arguments + '(#:tests? #f)) ; FIXME: Circular dependency on python-oslo.config. (propagated-inputs `(("python-babel" ,python-babel) ("python-six" ,python-six))) @@ -459,6 +486,8 @@ in an application or library.") (base32 "1fhy6yvbd565nv4x4i3ppyrlbmz3yy9d0xsvw5nkqsa7g43nmf8z")))) (build-system python-build-system) + (arguments + '(#:tests? #f)) ; FIXME: Requires oslo.utils >= 3.2.0. (propagated-inputs `(("python-debtcollector" ,python-debtcollector) ("python-oslo.config" ,python-oslo.config) @@ -496,6 +525,8 @@ handlers and support for context specific logging (like resource id’s etc).") (base32 "00s03krhf833gs76aw5ns32w9m1i4hx6x6d9g82m0j5wyqk0sci4")))) (build-system python-build-system) + (arguments + '(#:tests? #f)) ; FIXME: Requires python-oslo.utils >= 3.2.0. (propagated-inputs `(("python-iso8601" ,python-iso8601) ("python-netaddr" ,python-netaddr) @@ -520,6 +551,47 @@ in transmittable and storable formats, such as JSON and MessagePack.") (define-public python2-oslo.serialization (package-with-python2 python-oslo.serialization)) +(define-public python-reno + (package + (name "python-reno") + (version "2.0.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "reno" version)) + (sha256 + (base32 "1i2wnn5fnm3jm5774pahg000q0lma5i913hml91bbbm2mybphndd")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'check 'init-git + (lambda _ + ;; reno expects a git repo + (zero? (system* "git" "init"))))))) + (propagated-inputs + `(("python-babel" ,python-babel) + ("python-dulwich" ,python-dulwich) + ("python-pyyaml" ,python-pyyaml) + ("python-six" ,python-six))) + (native-inputs + `(("python-testtools" ,python-testtools) + ("python-pbr" ,python-pbr) + ("python-testscenarios" ,python-testscenarios) + ("python-testrepository" ,python-testrepository) + ("python-mock" ,python-mock) + ("python-oslotest" ,python-oslotest) + ("gnupg" ,gnupg) + ("git" ,git))) + (home-page "http://docs.openstack.org/developer/reno/") + (synopsis "Release notes manager") + (description "Reno is a tool for storing release notes in a git repository +and building documentation from them.") + (license asl2.0))) + +(define-public python2-reno + (package-with-python2 python-reno)) + (define-public python-oslosphinx (package (name "python-oslosphinx") @@ -603,6 +675,8 @@ and better support for mocking results.") ;; phase. (delete-file "oslo_utils/tests/test_netutils.py"))))) (build-system python-build-system) + (arguments + '(#:tests? #f)) ; FIXME: Requires oslo.config >= 2.7.0. (propagated-inputs `(("python-debtcollector" ,python-debtcollector) ("python-oslo.i18n" ,python-oslo.i18n) @@ -616,6 +690,8 @@ and better support for mocking results.") `(("python-babel" ,python-babel) ("python-pbr" ,python-pbr) ;; Tests. + ("python-bandit" ,python-bandit) + ("python-oslo.config" ,python-oslo.config) ("python-oslotest" ,python-oslotest) ("python-mock" ,python-mock) ("python-mox3" ,python-mox3) @@ -643,6 +719,8 @@ handling.") (base32 "1w4csvkah67rfpxylxnvs2s3594i0f9isy8pf4gnsqs5zirvjaa4")))) (build-system python-build-system) + (arguments + '(#:tests? #f)) ; FIXME: Many tests are failing. (native-inputs `(("python-sphinx" ,python-sphinx) ;; and some packages for the tests |