~ruther/guix-local

9ea474819ad63013f89cdf428105a8c3bf7d31df — Nicolas Graves 11 months ago 3e38b6a
gnu: python-oslo-serialization: Update to 5.7.0.

* gnu/packages/openstack.scm (python-oslo-serialization): Update to 5.7.0.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools, python-wheel.
[propagated-inputs]: Remove python-pytz, python-pb. Add python-tzdata.

Change-Id: Ib73f1a945ea1dd1766a18f41d0d02655ecddd46b
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 11 insertions(+), 8 deletions(-)

M gnu/packages/openstack.scm
M gnu/packages/openstack.scm => gnu/packages/openstack.scm +11 -8
@@ 615,25 615,28 @@ handlers and support for context specific logging (like resource id’s etc).")
(define-public python-oslo-serialization
  (package
    (name "python-oslo-serialization")
    (version "4.2.0")
    (version "5.7.0")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "oslo.serialization" version))
       (uri (pypi-uri "oslo_serialization" version))
       (sha256
        (base32
         "10sdgvyb0d3lcmb8b4l5gs40bkfbai08kvsdwp658dxd2yqf21rh"))))
    (build-system python-build-system)
        (base32 "1rrvdhv82gklj45z6xs1h4l51jcz8fmdjijya2rkj1mqjzfx7i5x"))))
    (build-system pyproject-build-system)
    (arguments
     '(#:phases (modify-phases %standard-phases
                  (replace 'check
                    (lambda* (#:key tests? #:allow-other-keys)
                      (when tests? (invoke "stestr" "run")))))))
    (propagated-inputs
      (list python-msgpack python-oslo-utils python-pbr python-pytz))
      (list python-msgpack python-oslo-utils python-tzdata))
    (native-inputs
     ;; For tests.
      (list python-netaddr python-oslo-i18n python-oslotest python-stestr))
     (list python-netaddr
           python-oslo-i18n
           python-oslotest
           python-setuptools
           python-stestr
           python-wheel))
    (home-page "https://launchpad.net/oslo")
    (synopsis "Oslo serialization library")
    (description