summaryrefslogtreecommitdiff
path: root/gnu/packages/openstack.scm
diff options
context:
space:
mode:
authorMarius Bakke <marius@gnu.org>2022-01-12 19:31:03 +0100
committerMarius Bakke <marius@gnu.org>2022-01-12 23:50:17 +0100
commit850d2e8eef2c0ac9da52bbcbe13adb27260ca68d (patch)
tree59b3ec05660ad9c77b9126bab73440e4f8af5062 /gnu/packages/openstack.scm
parent1585ff1f336429cf64d09484f33c3e1b872602e6 (diff)
gnu: python-oslo.utils: Update to 4.12.0.
* gnu/packages/openstack.scm (python-oslo.utils): Update to 4.12.0. [arguments]: Override check phase. [propagated-inputs]: Remove PYTHON-MONOTONIC and PYTHON-SIX. Add PYTHON-PBR and PYTHON-PACKAGING-NEXT. [native-inputs]: Remove PYTHON-PBR, PYTHON-BANDIT, PYTHON-OSLO.CONFIG, PYTHON-MOCK and PYTHON-TESTREPOSITORY. Add PYTHON-STESTR.
Diffstat (limited to 'gnu/packages/openstack.scm')
-rw-r--r--gnu/packages/openstack.scm26
1 files changed, 14 insertions, 12 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index bc16d142efb..f7e025041df 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -607,35 +607,37 @@ for debugging, and better support for mocking results.")
607(define-public python-oslo.utils 607(define-public python-oslo.utils
608 (package 608 (package
609 (name "python-oslo.utils") 609 (name "python-oslo.utils")
610 (version "3.36.2") 610 (version "4.12.0")
611 (source 611 (source
612 (origin 612 (origin
613 (method url-fetch) 613 (method url-fetch)
614 (uri (pypi-uri "oslo.utils" version)) 614 (uri (pypi-uri "oslo.utils" version))
615 (sha256 615 (sha256
616 (base32 616 (base32
617 "1ipjcgg9z697wmibhcbg5lqpk5gafakdx4qkff3w255zr0mvw04r")))) 617 "0kfgr6lr3r34nzmkvnyywr0x3lkwpwy35m1dj4rkk3ydqvi1xaip"))))
618 (build-system python-build-system) 618 (build-system python-build-system)
619 (arguments
620 '(#:phases (modify-phases %standard-phases
621 (replace 'check
622 (lambda* (#:key tests? #:allow-other-keys)
623 (when tests? (invoke "stestr" "run")))))))
619 (propagated-inputs 624 (propagated-inputs
620 (list python-debtcollector 625 (list python-debtcollector
621 python-oslo.i18n 626 python-oslo.i18n
622 python-iso8601 627 python-iso8601
623 python-monotonic
624 python-netaddr 628 python-netaddr
625 python-netifaces 629 python-netifaces
630 python-pbr
631 python-packaging-next
626 python-pyparsing 632 python-pyparsing
627 python-pytz 633 python-pytz))
628 python-six))
629 (native-inputs 634 (native-inputs
630 (list python-pbr 635 ;; For tests.
631 ;; Tests. 636 (list python-ddt
632 python-bandit 637 python-eventlet
633 python-ddt
634 python-fixtures 638 python-fixtures
635 python-oslo.config
636 python-oslotest 639 python-oslotest
637 python-mock 640 python-stestr
638 python-testrepository
639 python-testscenarios 641 python-testscenarios
640 python-testtools)) 642 python-testtools))
641 (home-page "https://launchpad.net/oslo") 643 (home-page "https://launchpad.net/oslo")