gnu: python-oslo.config: Update to 5.2.0.
* gnu/packages/openstack.scm (python-oslo.config): Update to 5.2.0. [source](uri): Use PYPI-URI. [arguments]: Remove field. [propagated-inputs]: Add PYTHON-DEBTCOLLECTOR, PYTHON-OSLO.I18N, PYTHON-PBR, PYTHON-RFC3986 and PYTHON-PYYAML. [native-inputs]: Remove PYTHON-PBR and PYTHON-I18N. Add PYTHON-BANDIT, PYTHON-COVERAGE, PYTHON-OPENSTACKDOCSTHEME, PYTHON-RENO, PYTHON-SPHINX-1.6, PYTHON-TESTREPOSITORY and PYTHON-TESTTOOLS.
This commit is contained in:
parent
a2803e206b
commit
9e4546a2be
|
@ -380,31 +380,35 @@ common features used in Tempest.")
|
||||||
(define-public python-oslo.config
|
(define-public python-oslo.config
|
||||||
(package
|
(package
|
||||||
(name "python-oslo.config")
|
(name "python-oslo.config")
|
||||||
(version "2.4.0")
|
(version "5.2.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (pypi-uri "oslo.config" version))
|
||||||
"https://pypi.python.org/packages/source/o/oslo.config/oslo.config-"
|
|
||||||
version
|
|
||||||
".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"13r778jfb0fhna37c2pd1f2xipnsbd7zli7qhn96acrzymrwj5k1"))))
|
"0ymf7jxbq29fifyvkwhfiys1qvljqfxdw8ajwzwaf3yiqidgpxqd"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
|
||||||
'(#:tests? #f)) ; FIXME: Requires packaging python-argparse.
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-netaddr" ,python-netaddr)
|
`(("python-debtcollector" ,python-debtcollector)
|
||||||
("python-six" ,python-six)
|
("python-netaddr" ,python-netaddr)
|
||||||
("python-stevedore" ,python-stevedore)))
|
|
||||||
(native-inputs
|
|
||||||
`(("python-pbr" ,python-pbr)
|
|
||||||
;; Tests
|
|
||||||
("python-oslo.i18n" ,python-oslo.i18n)
|
("python-oslo.i18n" ,python-oslo.i18n)
|
||||||
|
("python-pbr" ,python-pbr)
|
||||||
|
("python-rfc3986" ,python-rfc3986)
|
||||||
|
("python-six" ,python-six)
|
||||||
|
("python-stevedore" ,python-stevedore)
|
||||||
|
("python-pyyaml" ,python-pyyaml)))
|
||||||
|
(native-inputs
|
||||||
|
`(("python-bandit" ,python-bandit)
|
||||||
|
("python-coverage" ,python-coverage)
|
||||||
("python-mock" ,python-mock)
|
("python-mock" ,python-mock)
|
||||||
|
("python-openstackdocstheme" ,python-openstackdocstheme)
|
||||||
("python-oslotest" ,python-oslotest)
|
("python-oslotest" ,python-oslotest)
|
||||||
("python-testscenarios" ,python-testscenarios)))
|
("python-reno" ,python-reno)
|
||||||
|
("python-sphinx" ,python-sphinx-1.6)
|
||||||
|
("python-testrepository" ,python-testrepository)
|
||||||
|
("python-testscenarios" ,python-testscenarios)
|
||||||
|
("python-testtools" ,python-testtools)))
|
||||||
(home-page "https://launchpad.net/oslo")
|
(home-page "https://launchpad.net/oslo")
|
||||||
(synopsis "Oslo Configuration API")
|
(synopsis "Oslo Configuration API")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue