Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Guix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ogs
inf
Guix
Commits
8531b326
Commit
8531b326
authored
9 years ago
by
Cyril Roelandt
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add oslo.i18n.
* gnu/packages/openstack.scm (python-oslo.i18n, python2-oslo.i18n): New variables.
parent
05de40c5
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnu/packages/openstack.scm
+37
-0
37 additions, 0 deletions
gnu/packages/openstack.scm
with
37 additions
and
0 deletions
gnu/packages/openstack.scm
+
37
−
0
View file @
8531b326
...
...
@@ -140,6 +140,43 @@ (define-public python2-pbr
(
package-with-python2
python-pbr
))
;; Packages from the Oslo library
(
define-public
python-oslo
.
i18n
(
package
(
name
"python-oslo.i18n"
)
(
version
"2.5.0"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
string-append
"https://pypi.python.org/packages/source/o/oslo.i18n/oslo.i18n-"
version
".tar.gz"
))
(
sha256
(
base32
"1kg72mqldlri3x0bhxai7j979czrd7mf8s3iflvvv0x9kn9ah4cw"
))))
(
build-system
python-build-system
)
(
propagated-inputs
`
((
"python-babel"
,
python-babel
)
(
"python-six"
,
python-six
)))
(
inputs
`
((
"python-pbr"
,
python-pbr
)
(
"python-setuptools"
,
python-setuptools
)
;; Tests
(
"python-mock"
,
python-mock
)
(
"python-mox3"
,
python-mox3
)
(
"python-oslotest"
,
python-oslotest
)
(
"python-testscenarios"
,
python-testscenarios
)))
(
home-page
"http://launchpad.net/oslo"
)
(
synopsis
"Oslo internationalization (i18n) library"
)
(
description
"The oslo.i18n library contain utilities for working with
internationalization (i18n) features, especially translation for text strings
in an application or library."
)
(
license
asl2
.
0
)))
(
define-public
python2-oslo
.
i18n
(
package-with-python2
python-oslo
.
i18n
))
(
define-public
python-oslotest
(
package
(
name
"python-oslotest"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment