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

75 lines
1.1 KiB
Nix
Raw Normal View History

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