summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJean-Paul Pelteret <jppelteret@gmail.com>2021-01-31 17:50:16 +0100
committerGitHub <noreply@github.com>2021-01-31 10:50:16 -0600
commit6ac3d98f4cef26234fa0f3d77fa0a3c941534d76 (patch)
tree1b1276b8cb8133657c1d3ea1a566cdac5988c3a3 /var
parent6c03c9996a5ab8e26aa88157d95f44b4796a2b49 (diff)
downloadspack-6ac3d98f4cef26234fa0f3d77fa0a3c941534d76.tar.gz
spack-6ac3d98f4cef26234fa0f3d77fa0a3c941534d76.tar.bz2
spack-6ac3d98f4cef26234fa0f3d77fa0a3c941534d76.tar.xz
spack-6ac3d98f4cef26234fa0f3d77fa0a3c941534d76.zip
Add package: py-flask-babel (#21272)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-flask-babel/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-flask-babel/package.py b/var/spack/repos/builtin/packages/py-flask-babel/package.py
new file mode 100644
index 0000000000..4d91e33c96
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-flask-babel/package.py
@@ -0,0 +1,22 @@
+# 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 PyFlaskBabel(PythonPackage):
+ """Implements i18n and l10n support for Flask."""
+
+ homepage = "https://pythonhosted.org/Flask-Babel/"
+ pypi = "Flask-Babel/Flask-Babel-2.0.0.tar.gz"
+
+ version('2.0.0', sha256='f9faf45cdb2e1a32ea2ec14403587d4295108f35017a7821a2b1acb8cfd9257d')
+
+ depends_on('python@3.5:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-flask', type=('build', 'run'))
+ depends_on('py-babel@2.3:', type=('build', 'run'))
+ depends_on('py-pytz', type=('build', 'run'))
+ depends_on('py-jinja2@2.5:', type=('build', 'run'))