diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-02-28 04:37:23 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-02-28 13:59:02 +0100 |
commit | 32bb0c617b12a3a937097922e4dfc819490d3f13 (patch) | |
tree | 0aaddb34ab4609554f26a858b9aca0639f0ee4ec | |
parent | 24f4400aa69925635c229d7f494eabf37e980cae (diff) | |
download | patches-32bb0c617b12a3a937097922e4dfc819490d3f13.tar patches-32bb0c617b12a3a937097922e4dfc819490d3f13.tar.gz |
gnu: python-oslo.context: Update to 2.20.0.
* gnu/packages/openstack.scm (python-oslo.context): Update to 2.20.0.
[propagated-inputs]: Add PYTHON-DEBTCOLLECTOR and PYTHON-PBR.
[native-inputs]: Remove PYTHON-PBR, PYTHON-COVERAGE, PYTHON-MOCK,
PYTHON-OS-CLIENT-CONFIG, PYTHON-OSLOSPHINX and PYTHON-SPHINX. Add
PYTHON-FIXTURES.
-rw-r--r-- | gnu/packages/openstack.scm | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index 0802e93eea..c990fb929b 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -422,26 +422,22 @@ common features used in Tempest.") (define-public python-oslo.context (package (name "python-oslo.context") - (version "1.0.0") + (version "2.20.0") (source (origin (method url-fetch) (uri (pypi-uri "oslo.context" version)) (sha256 (base32 - "0kvha0rs9295njyl2z6n6zm5dapi5mrl5zwjm0m6ldqrvccyf8c3")))) + "0iiq9rpwg6wrdqnhf3d8z8g0g7fjhs5zn6qw6igvxplz2c3rbvvx")))) (build-system python-build-system) + (propagated-inputs + `(("python-debtcollector" ,python-debtcollector) + ("python-pbr" ,python-pbr))) (native-inputs - `(("python-babel" ,python-babel) - ("python-pbr" ,python-pbr) - ;; Tests. - ("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))) + `(("python-fixtures" ,python-fixtures) + ("python-hacking" ,python-hacking) + ("python-oslotest" ,python-oslotest))) (home-page "https://launchpad.net/oslo") (synopsis "Oslo context library") (description |