nixpkgs/pkgs/development/python-modules/spacy/default.nix

63 lines
1 KiB
Nix
Raw Normal View History

{ lib
2017-05-15 12:09:39 +02:00
, buildPythonPackage
, fetchPypi
, pythonOlder
, pytest
, blis
, catalogue
, cymem
, jsonschema
2017-05-15 12:09:39 +02:00
, murmurhash
, numpy
, pathlib
2017-05-15 12:09:39 +02:00
, plac
, preshed
2017-05-15 12:09:39 +02:00
, requests
, setuptools
, srsly
2017-05-15 12:09:39 +02:00
, thinc
, wasabi
2017-05-15 12:09:39 +02:00
}:
buildPythonPackage rec {
pname = "spacy";
version = "2.2.4";
2017-05-15 12:09:39 +02:00
2018-03-14 00:02:00 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "1fgm1zlw8mjhmk64skxs79ymhcningml13y9c9fy7rj1b1yadwzh";
};
2017-05-15 12:09:39 +02:00
propagatedBuildInputs = [
blis
catalogue
cymem
jsonschema
murmurhash
numpy
plac
preshed
requests
setuptools
srsly
thinc
wasabi
] ++ lib.optional (pythonOlder "3.4") pathlib;
2018-03-14 00:02:00 +01:00
checkInputs = [
pytest
2017-05-15 12:09:39 +02:00
];
doCheck = false;
# checkPhase = ''
# ${python.interpreter} -m pytest spacy/tests --vectors --models --slow
# '';
meta = with lib; {
2017-05-15 12:09:39 +02:00
description = "Industrial-strength Natural Language Processing (NLP) with Python and Cython";
homepage = "https://github.com/explosion/spaCy";
2017-05-15 12:09:39 +02:00
license = licenses.mit;
maintainers = with maintainers; [ danieldk sdll ];
2017-05-15 12:09:39 +02:00
};
}