2017-05-15 10:08:30 +00:00
|
|
|
{ stdenv
|
2018-03-12 22:45:13 +00:00
|
|
|
, lib
|
2017-05-15 10:08:30 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2018-03-12 22:45:13 +00:00
|
|
|
, pythonOlder
|
2017-05-15 10:08:30 +00:00
|
|
|
, pytest
|
|
|
|
, cython
|
|
|
|
, cymem
|
2018-09-05 14:22:52 +00:00
|
|
|
, darwin
|
2018-03-12 22:45:13 +00:00
|
|
|
, msgpack-numpy
|
|
|
|
, msgpack-python
|
2017-05-15 10:08:30 +00:00
|
|
|
, preshed
|
|
|
|
, numpy
|
|
|
|
, murmurhash
|
2018-03-12 22:45:13 +00:00
|
|
|
, pathlib
|
2017-05-15 10:08:30 +00:00
|
|
|
, hypothesis
|
|
|
|
, tqdm
|
|
|
|
, cytoolz
|
|
|
|
, plac
|
|
|
|
, six
|
|
|
|
, mock
|
|
|
|
, wrapt
|
|
|
|
, dill
|
2019-05-11 13:31:08 +00:00
|
|
|
, blis
|
|
|
|
, srsly
|
|
|
|
, wasabi
|
2017-05-15 10:08:30 +00:00
|
|
|
}:
|
|
|
|
|
2018-03-12 22:45:13 +00:00
|
|
|
buildPythonPackage rec {
|
2017-11-09 11:26:09 +00:00
|
|
|
pname = "thinc";
|
2019-07-16 07:30:45 +00:00
|
|
|
version = "7.0.8";
|
2017-05-15 10:08:30 +00:00
|
|
|
|
2018-03-12 22:45:13 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-07-16 07:30:45 +00:00
|
|
|
sha256 = "191admjvhqsbxpqn73q42i0i8kvlblj0k6p0z9p7n3pcxzl75nsw";
|
2017-05-15 10:08:30 +00:00
|
|
|
};
|
|
|
|
|
2018-09-05 14:22:52 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
|
|
Accelerate CoreFoundation CoreGraphics CoreVideo
|
|
|
|
]);
|
|
|
|
|
2017-05-15 10:08:30 +00:00
|
|
|
propagatedBuildInputs = [
|
2019-05-11 13:31:08 +00:00
|
|
|
blis
|
2017-05-15 10:08:30 +00:00
|
|
|
cython
|
|
|
|
cymem
|
2018-03-12 22:45:13 +00:00
|
|
|
msgpack-numpy
|
|
|
|
msgpack-python
|
2017-05-15 10:08:30 +00:00
|
|
|
preshed
|
|
|
|
numpy
|
|
|
|
murmurhash
|
|
|
|
tqdm
|
|
|
|
cytoolz
|
|
|
|
plac
|
|
|
|
six
|
2019-05-11 13:31:08 +00:00
|
|
|
srsly
|
2017-05-15 10:08:30 +00:00
|
|
|
wrapt
|
|
|
|
dill
|
2019-05-11 13:31:08 +00:00
|
|
|
wasabi
|
2018-03-12 22:45:13 +00:00
|
|
|
] ++ lib.optional (pythonOlder "3.4") pathlib;
|
|
|
|
|
|
|
|
|
|
|
|
checkInputs = [
|
2018-12-15 08:28:44 +00:00
|
|
|
hypothesis
|
|
|
|
mock
|
2018-03-12 22:45:13 +00:00
|
|
|
pytest
|
2017-05-15 10:08:30 +00:00
|
|
|
];
|
|
|
|
|
2018-03-12 22:45:13 +00:00
|
|
|
prePatch = ''
|
2018-10-20 10:07:52 +00:00
|
|
|
substituteInPlace setup.py \
|
2019-05-11 13:31:08 +00:00
|
|
|
--replace "plac>=0.9.6,<1.0.0" "plac>=0.9.6"
|
2018-03-12 22:45:13 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
# Cannot find cython modules.
|
2017-05-15 10:08:30 +00:00
|
|
|
doCheck = false;
|
2017-11-09 11:26:09 +00:00
|
|
|
|
2018-03-12 22:45:13 +00:00
|
|
|
checkPhase = ''
|
|
|
|
pytest thinc/tests
|
|
|
|
'';
|
2017-11-09 11:26:09 +00:00
|
|
|
|
2017-05-15 10:08:30 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Practical Machine Learning for NLP in Python";
|
|
|
|
homepage = https://github.com/explosion/thinc;
|
|
|
|
license = licenses.mit;
|
2019-07-11 14:33:52 +00:00
|
|
|
maintainers = with maintainers; [ aborsu danieldk sdll ];
|
2017-05-15 10:08:30 +00:00
|
|
|
};
|
|
|
|
}
|