Add py-oslo-i18n (#25217)
* Add py-oslo-i18n * Update var/spack/repos/builtin/packages/py-oslo-i18n/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
parent
bdc3bde74b
commit
b172b43fa9
1 changed files with 27 additions and 0 deletions
27
var/spack/repos/builtin/packages/py-oslo-i18n/package.py
Normal file
27
var/spack/repos/builtin/packages/py-oslo-i18n/package.py
Normal file
|
@ -0,0 +1,27 @@
|
|||
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
||||
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
||||
#
|
||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||
|
||||
from spack import *
|
||||
|
||||
|
||||
class PyOsloI18n(PythonPackage):
|
||||
"""
|
||||
The oslo.i18n library contain utilities for working with
|
||||
internationalization (i18n) features, especially translation for text
|
||||
strings in an application or library.
|
||||
"""
|
||||
|
||||
homepage = "https://docs.openstack.org/oslo.i18n"
|
||||
pypi = "oslo.i18n/oslo.i18n-5.0.1.tar.gz"
|
||||
|
||||
maintainers = ['haampie']
|
||||
|
||||
version('5.0.1', sha256='3484b71e30f75c437523302d1151c291caf4098928269ceec65ce535456e035b')
|
||||
|
||||
depends_on('python@3.6:', type=('build', 'run'))
|
||||
depends_on('py-setuptools', type='build')
|
||||
depends_on('py-pbr@2.0.0:2.0.999,2.1.1:', type=('build', 'run'))
|
||||
|
||||
depends_on('py-six@1.10.0:', type=('build', 'run'))
|
Loading…
Reference in a new issue