pythonPackages.pyspark: Init at 2.3.0
This commit is contained in:
parent
4322f2b8c8
commit
2963d76ca3
28
pkgs/development/python-modules/pyspark/default.nix
Normal file
28
pkgs/development/python-modules/pyspark/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -20654,6 +20654,8 @@ EOF
|
||||
|
||||
spacy_models = callPackage ../development/python-modules/spacy/models.nix { };
|
||||
|
||||
pyspark = callPackage ../development/python-modules/pyspark { };
|
||||
|
||||
sseclient = callPackage ../development/python-modules/sseclient { };
|
||||
|
||||
textacy = callPackage ../development/python-modules/textacy { };
|
||||
|
Loading…
Reference in New Issue
Block a user