pythonPackages.pyspark: Init at 2.3.0

This commit is contained in:
Shea Levy
2018-03-08 10:22:37 -05:00
parent 4322f2b8c8
commit 2963d76ca3
2 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{ buildPythonPackage, fetchPypi, stdenv, py4j }:
buildPythonPackage rec {
pname = "pyspark";
version = "2.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "0vlq07yqy6c7ayg401i0qynnliqz405bmw1r8alkck0m1s8kcd8b";
};
# pypandoc is broken with pandoc2, so we just lose docs.
postPatch = ''
sed -i "s/'pypandoc'//" setup.py
'';
propagatedBuildInputs = [ py4j ];
# Tests assume running spark...
doCheck = false;
meta = with stdenv.lib; {
description = "Apache Spark";
homepage = https://github.com/apache/spark/tree/master/python;
license = licenses.asl20;
maintainers = [ maintainers.shlevy ];
};
}