New package: py-faker (#28049)

Co-authored-by: Sid Pendelberry <sid@rit.edu>
This commit is contained in:
Jen Herting 2021-12-20 21:08:53 -05:00 committed by GitHub
parent cd211acd80
commit 024c2b690a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,25 @@
# 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 PyFaker(PythonPackage):
"""Faker is a Python package that generates fake data for
you. Whether you need to bootstrap your database, create
good-looking XML documents, fill-in your persistence to
stress test it, or anonymize data taken from a production
service, Faker is for you."""
homepage = "https://github.com/joke2k/faker"
pypi = "Faker/Faker-9.8.2.tar.gz"
version('9.8.2', sha256='393bd1b5becf3ccbc04a4f0f13da7e437914b24cafd1a4d8b71b5fecff54fb34')
depends_on('python@3.6:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-python-dateutil@2.4:', type=('build', 'run'))
depends_on('py-text-unidecode@1.3', type=('build', 'run'))
depends_on('py-typing-extensions@3.10.0.2:', type=('build', 'run'), when='^python@:3.8')