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

67 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
2017-05-15 11:09:39 +01:00
, buildPythonPackage
, fetchPypi
, pythonOlder
, pytest
, blis
, catalogue
, cymem
, jsonschema
2017-05-15 11:09:39 +01:00
, murmurhash
, numpy
, pathlib
2017-05-15 11:09:39 +01:00
, plac
, preshed
2017-05-15 11:09:39 +01:00
, requests
, setuptools
, srsly
2017-05-15 11:09:39 +01:00
, thinc
, wasabi
2017-05-15 11:09:39 +01:00
}:
buildPythonPackage rec {
pname = "spacy";
version = "2.3.0";
2017-05-15 11:09:39 +01:00
2018-03-13 23:02:00 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0nri437dyapiq5gx8lbmjdfvqw2cnw3di13kp44rzr17bm5yh2jv";
};
2017-05-15 11:09:39 +01:00
propagatedBuildInputs = [
blis
catalogue
cymem
jsonschema
murmurhash
numpy
plac
preshed
requests
setuptools
srsly
thinc
wasabi
] ++ 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
# '';
postPatch = ''
substituteInPlace setup.cfg --replace "thinc==7.4.1" "thinc>=7.4.1,<8"
'';
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";
2017-05-15 11:09:39 +01:00
license = licenses.mit;
maintainers = with maintainers; [ danieldk sdll ];
};
2017-05-15 11:09:39 +01:00
}