2021-01-25 08:26:54 +00:00
|
|
|
{ buildPythonPackage, fetchPypi, lib, py4j }:
|
2018-03-08 15:22:37 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyspark";
|
2020-10-17 02:10:02 +01:00
|
|
|
version = "3.0.1";
|
2018-03-08 15:22:37 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-17 02:10:02 +01:00
|
|
|
sha256 = "38b485d3634a86c9a2923c39c8f08f003fdd0e0a3d7f07114b2fb4392ce60479";
|
2018-03-08 15:22:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# pypandoc is broken with pandoc2, so we just lose docs.
|
|
|
|
postPatch = ''
|
|
|
|
sed -i "s/'pypandoc'//" setup.py
|
2019-01-29 20:53:31 +00:00
|
|
|
|
2020-11-23 23:15:59 +00:00
|
|
|
substituteInPlace setup.py --replace py4j==0.10.9 'py4j>=0.10.9,<0.11'
|
2018-03-08 15:22:37 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ py4j ];
|
|
|
|
|
|
|
|
# Tests assume running spark...
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-03-08 15:22:37 +00:00
|
|
|
description = "Apache Spark";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/apache/spark/tree/master/python";
|
2018-03-08 15:22:37 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.shlevy ];
|
|
|
|
};
|
|
|
|
}
|