gnu: python-oslo.log: Update to 4.6.1.
* gnu/packages/openstack.scm (python-oslo.log): Update to 4.6.1. [arguments]: Override check phase. [propagated-inputs]: Remove PYTHON-MONOTONIC. [native-inputs]: Remove PYTHON-MOCK, PYTHON-TESTREPOSITORY, and PYTHON-SUBUNIT. Add PYTHON-FIXTURES and PYTHON-STESTR.
parent
4a6808226e
commit
97db2f1302
|
@ -456,19 +456,23 @@ in an application or library.")
|
||||||
(define-public python-oslo.log
|
(define-public python-oslo.log
|
||||||
(package
|
(package
|
||||||
(name "python-oslo.log")
|
(name "python-oslo.log")
|
||||||
(version "3.36.0")
|
(version "4.6.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "oslo.log" version))
|
(uri (pypi-uri "oslo.log" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0h7hplf1h8k24v75m3mq1jlrl74x5ynyr4hwgffsg5campxnza4x"))))
|
"0dlnxjci9mpwhgfv19fy1z7xrdp8m95skrj5dr60all3pr7n22f6"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases (modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests? (invoke "stestr" "run")))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-dateutil
|
(list python-dateutil
|
||||||
python-debtcollector
|
python-debtcollector
|
||||||
python-monotonic
|
|
||||||
python-oslo.config
|
python-oslo.config
|
||||||
python-oslo.context
|
python-oslo.context
|
||||||
python-oslo.i18n
|
python-oslo.i18n
|
||||||
|
@ -478,8 +482,7 @@ in an application or library.")
|
||||||
python-pyinotify
|
python-pyinotify
|
||||||
python-six))
|
python-six))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-mock python-oslotest python-subunit
|
(list python-fixtures python-oslotest python-stestr python-testtools))
|
||||||
python-testrepository python-testtools))
|
|
||||||
(home-page "https://launchpad.net/oslo")
|
(home-page "https://launchpad.net/oslo")
|
||||||
(synopsis "Python logging library of the Oslo project")
|
(synopsis "Python logging library of the Oslo project")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue