mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 12:09:15 -05:00
gnu: Add python-oslo.context.
* gnu/packages/openstack.scm (python-oslo.context, python2-oslo.context): New variables.
This commit is contained in:
parent
5702efe3e9
commit
c7c7a93621
1 changed files with 31 additions and 0 deletions
|
@ -253,6 +253,37 @@ (define-public python-oslo.config
|
||||||
(define-public python2-oslo.config
|
(define-public python2-oslo.config
|
||||||
(package-with-python2 python-oslo.config))
|
(package-with-python2 python-oslo.config))
|
||||||
|
|
||||||
|
(define-public python-oslo.context
|
||||||
|
(package
|
||||||
|
(name "python-oslo.context")
|
||||||
|
(version "0.6.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"https://pypi.python.org/packages/source/o/oslo.context/"
|
||||||
|
"oslo.context-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"16wr9qrkc3lb94ssb14qid4liza66x316fvzjw0izg67h1a0fm86"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("python-babel" ,python-babel)
|
||||||
|
("python-pbr" ,python-pbr)
|
||||||
|
("python-setuptools" ,python-setuptools)
|
||||||
|
;; Tests.
|
||||||
|
("python-oslotest" ,python-oslotest)))
|
||||||
|
(home-page "http://launchpad.net/oslo")
|
||||||
|
(synopsis "Oslo context library")
|
||||||
|
(description
|
||||||
|
"The Oslo context library has helpers to maintain useful information
|
||||||
|
about a request context. The request context is usually populated in the WSGI
|
||||||
|
pipeline and used by various modules such as logging.")
|
||||||
|
(license asl2.0)))
|
||||||
|
|
||||||
|
(define-public python2-oslo.context
|
||||||
|
(package-with-python2 python-oslo.context))
|
||||||
|
|
||||||
(define-public python-oslo.i18n
|
(define-public python-oslo.i18n
|
||||||
(package
|
(package
|
||||||
(name "python-oslo.i18n")
|
(name "python-oslo.i18n")
|
||||||
|
|
Loading…
Reference in a new issue