1 { buildPythonPackage, fetchPypi, lib, py4j }:
3 buildPythonPackage rec {
9 sha256 = "d4f2ced43394ad773f7b516a4bbcb5821a940462a17b1a25f175c83771b62ebc";
12 # pypandoc is broken with pandoc2, so we just lose docs.
14 sed -i "s/'pypandoc'//" setup.py
16 substituteInPlace setup.py --replace py4j==0.10.9 'py4j>=0.10.9,<0.11'
19 propagatedBuildInputs = [ py4j ];
21 # Tests assume running spark...
25 description = "Apache Spark";
26 homepage = "https://github.com/apache/spark/tree/master/python";
27 license = licenses.asl20;
28 maintainers = [ maintainers.shlevy ];