New package: py-faker (#28049)
Co-authored-by: Sid Pendelberry <sid@rit.edu>
This commit is contained in:
parent
cd211acd80
commit
024c2b690a
25
var/spack/repos/builtin/packages/py-faker/package.py
Normal file
25
var/spack/repos/builtin/packages/py-faker/package.py
Normal 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')
|
Loading…
Reference in New Issue
Block a user