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

67 lines
1,023 B
Nix
Raw Normal View History

2017-05-15 12:09:39 +02:00
{ stdenv
, pkgs
, buildPythonPackage
, python
, fetchPypi
, fetchFromGitHub
, pytest
2017-05-15 12:09:39 +02:00
, cython
, cymem
, preshed
, pathlib2
, numpy
, murmurhash
, plac
, six
, ujson
, dill
, requests
, ftfy
, thinc
, pip
, regex
2017-05-15 12:09:39 +02:00
}:
buildPythonPackage rec {
pname = "spacy";
2017-05-15 12:09:39 +02:00
version = "1.8.2";
src = fetchFromGitHub {
owner = "explosion";
repo = "spaCy";
rev = "v${version}";
sha256 = "0v3bmmar31a6968y4wl0lmgnc3829l2mnwd8s959m4pqw1y1w648";
};
2017-05-15 12:09:39 +02:00
propagatedBuildInputs = [
cython
cymem
pathlib2
preshed
numpy
murmurhash
plac
six
ujson
dill
requests
regex
2017-05-15 12:09:39 +02:00
ftfy
thinc
pytest
pip
];
doCheck = false;
# checkPhase = ''
# ${python.interpreter} -m pytest spacy/tests --vectors --models --slow
# '';
2017-05-15 12:09:39 +02:00
meta = with stdenv.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 ];
};
}