about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/spacy/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/spacy/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/spacy/default.nix68
1 files changed, 68 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/spacy/default.nix b/nixpkgs/pkgs/development/python-modules/spacy/default.nix
new file mode 100644
index 000000000000..275e924e4113
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/spacy/default.nix
@@ -0,0 +1,68 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pythonOlder
+, pytest
+, preshed
+, ftfy
+, numpy
+, murmurhash
+, plac
+, ujson
+, dill
+, requests
+, thinc
+, regex
+, cymem
+, pathlib
+, msgpack-python
+, msgpack-numpy
+}:
+
+buildPythonPackage rec {
+  pname = "spacy";
+  version = "2.0.18";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0mybdms7c40jvk8ak180n65anjiyg4c8gkaqwkzicrd1mxq3ngqj";
+  };
+
+  prePatch = ''
+    substituteInPlace setup.py \
+      --replace "regex==" "regex>=" \
+      --replace "plac<1.0.0,>=0.9.6" "plac>=0.9.6"
+  '';
+
+  propagatedBuildInputs = [
+   numpy
+   murmurhash
+   cymem
+   preshed
+   thinc
+   plac
+   ujson
+   dill
+   requests
+   regex
+   ftfy
+   msgpack-python
+   msgpack-numpy
+  ] ++ lib.optional (pythonOlder "3.4") pathlib;
+
+  checkInputs = [
+    pytest
+  ];
+
+  doCheck = false;
+  # checkPhase = ''
+  #   ${python.interpreter} -m pytest spacy/tests --vectors --models --slow
+  # '';
+
+  meta = with lib; {
+    description = "Industrial-strength Natural Language Processing (NLP) with Python and Cython";
+    homepage = https://github.com/explosion/spaCy;
+    license = licenses.mit;
+    maintainers = with maintainers; [ sdll ];
+    };
+}