19 lines
611 B
Python
19 lines
611 B
Python
# Copyright 2013-2019 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 PyPyspark(PythonPackage):
|
|
"""Python bindings for Apache Spark"""
|
|
|
|
homepage = "http://spark.apache.org"
|
|
url = "https://pypi.org/packages/source/p/pyspark/pyspark-2.3.0.tar.gz"
|
|
|
|
version('2.3.0', sha256='0b3536910e154c36a94239f0ba0a201f476aadc72006409e5787198ffd01986e')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-py4j', type=('build', 'run'))
|