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
|
2021-10-05 15:04:30 +00:00
|
|
|
, pytestCheckHook
|
2020-03-13 14:06:22 +00:00
|
|
|
, blis
|
|
|
|
, catalogue
|
2017-05-15 10:08:30 +00:00
|
|
|
, cymem
|
2020-03-13 14:06:22 +00:00
|
|
|
, cython
|
2021-10-05 15:04:30 +00:00
|
|
|
, Accelerate
|
|
|
|
, CoreFoundation
|
|
|
|
, CoreGraphics
|
|
|
|
, CoreVideo
|
2020-03-13 14:06:22 +00:00
|
|
|
, hypothesis
|
|
|
|
, mock
|
2017-05-15 10:08:30 +00:00
|
|
|
, murmurhash
|
2020-03-13 14:06:22 +00:00
|
|
|
, numpy
|
2018-03-12 22:45:13 +00:00
|
|
|
, pathlib
|
2017-05-15 10:08:30 +00:00
|
|
|
, plac
|
2021-10-05 15:04:30 +00:00
|
|
|
, pythonOlder
|
2020-03-13 14:06:22 +00:00
|
|
|
, preshed
|
2021-04-18 18:02:00 +00:00
|
|
|
, pydantic
|
2019-05-11 13:31:08 +00:00
|
|
|
, srsly
|
2020-03-13 14:06:22 +00:00
|
|
|
, tqdm
|
2021-10-05 15:04:30 +00:00
|
|
|
, typing-extensions
|
2019-05-11 13:31:08 +00:00
|
|
|
, 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";
|
2021-10-05 15:04:30 +00:00
|
|
|
version = "8.0.10";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.6";
|
2017-05-15 10:08:30 +00:00
|
|
|
|
2018-03-12 22:45:13 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-10-05 15:04:30 +00:00
|
|
|
hash = "sha256-teTbjSTmvopfHkoXhUdyt5orVgIkUZ9Qoh85UcokAB8=";
|
2017-05-15 10:08:30 +00:00
|
|
|
};
|
|
|
|
|
2021-10-05 15:04:30 +00:00
|
|
|
buildInputs = [ cython ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [
|
2020-12-12 10:25:57 +00:00
|
|
|
Accelerate
|
|
|
|
CoreFoundation
|
|
|
|
CoreGraphics
|
|
|
|
CoreVideo
|
2021-10-05 15:04:30 +00:00
|
|
|
];
|
2018-09-05 14:22:52 +00:00
|
|
|
|
2017-05-15 10:08:30 +00:00
|
|
|
propagatedBuildInputs = [
|
2020-12-12 10:25:57 +00:00
|
|
|
blis
|
|
|
|
catalogue
|
|
|
|
cymem
|
|
|
|
murmurhash
|
|
|
|
numpy
|
|
|
|
plac
|
|
|
|
preshed
|
|
|
|
srsly
|
|
|
|
tqdm
|
2021-04-18 18:02:00 +00:00
|
|
|
pydantic
|
2020-12-12 10:25:57 +00:00
|
|
|
wasabi
|
2021-10-05 15:04:30 +00:00
|
|
|
] ++ lib.optional (pythonOlder "3.8") typing-extensions;
|
2018-03-12 22:45:13 +00:00
|
|
|
|
|
|
|
checkInputs = [
|
2018-12-15 08:28:44 +00:00
|
|
|
hypothesis
|
|
|
|
mock
|
2021-10-05 15:04:30 +00:00
|
|
|
pytestCheckHook
|
2017-05-15 10:08:30 +00:00
|
|
|
];
|
|
|
|
|
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
|
|
|
|
2021-10-05 15:04:30 +00:00
|
|
|
pytestFlagsArray = [
|
|
|
|
"thinc/tests"
|
|
|
|
];
|
2017-11-09 11:26:09 +00:00
|
|
|
|
2020-06-20 09:09:18 +00:00
|
|
|
pythonImportsCheck = [ "thinc" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-05-15 10:08:30 +00:00
|
|
|
description = "Practical Machine Learning for NLP in Python";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/explosion/thinc";
|
2017-05-15 10:08:30 +00:00
|
|
|
license = licenses.mit;
|
2021-09-18 09:22:27 +00:00
|
|
|
maintainers = with maintainers; [ aborsu ];
|
2020-12-12 10:25:57 +00:00
|
|
|
};
|
2017-05-15 10:08:30 +00:00
|
|
|
}
|