diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-02-28 03:59:22 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-02-28 13:59:02 +0100 |
commit | b51fbd6d6e67cc947c1c2977e08511930e7f7648 (patch) | |
tree | fe59f41b039025050f68a2cf926f3b135badaa59 /gnu/packages/openstack.scm | |
parent | 9e4546a2be4d91cc8bb498340923ef01ae94971b (diff) | |
download | patches-b51fbd6d6e67cc947c1c2977e08511930e7f7648.tar patches-b51fbd6d6e67cc947c1c2977e08511930e7f7648.tar.gz |
gnu: python-oslo.utils: Update to 3.35.0.
* gnu/packages/openstack.scm (python-oslo.utils): Update to 3.35.0.
[source](snippet): Remove.
[propagated-inputs]: Add PYTHON-PYPARSING.
[native-inputs]: Add PYTHON-DDT, PYTHON-FIXTURES, PYTHON-TESTREPOSITORY and
PYTHON-TESTTOOLS. Remove PYTHON-MOX3.
Diffstat (limited to 'gnu/packages/openstack.scm')
-rw-r--r-- | gnu/packages/openstack.scm | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index e49fe8e903..0802e93eea 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -682,22 +682,15 @@ and better support for mocking results.") (define-public python-oslo.utils (package (name "python-oslo.utils") - (version "3.0.0") + (version "3.35.0") (source (origin (method url-fetch) (uri (pypi-uri "oslo.utils" version)) (sha256 (base32 - "1c4jrbvfs4hs37fics8frqlyhmsv7v92ncv2cpbm0av9x0ic6pnj")) - (snippet - '(begin - ;; FIXME: setuptools fails to import this file during the test - ;; phase. - (delete-file "oslo_utils/tests/test_netutils.py"))))) + "1ai9yyasyh1563khsri6ryk6iqdprmyiashg377m9h4nmv700ybx")))) (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) @@ -705,18 +698,21 @@ and better support for mocking results.") ("python-monotonic" ,python-monotonic) ("python-netaddr" ,python-netaddr) ("python-netifaces" ,python-netifaces) + ("python-pyparsing" ,python-pyparsing) ("python-pytz" ,python-pytz) ("python-six" ,python-six))) (native-inputs - `(("python-babel" ,python-babel) - ("python-pbr" ,python-pbr) + `(("python-pbr" ,python-pbr) ;; Tests. ("python-bandit" ,python-bandit) + ("python-ddt" ,python-ddt) + ("python-fixtures" ,python-fixtures) ("python-oslo.config" ,python-oslo.config) ("python-oslotest" ,python-oslotest) ("python-mock" ,python-mock) - ("python-mox3" ,python-mox3) - ("python-testscenarios" ,python-testscenarios))) + ("python-testrepository" ,python-testrepository) + ("python-testscenarios" ,python-testscenarios) + ("python-testtools" ,python-testtools))) (home-page "https://launchpad.net/oslo") (synopsis "Oslo utility library") (description |