2017-05-15 03:08:30 -07:00
|
|
|
{ stdenv
|
2018-03-12 15:45:13 -07:00
|
|
|
, lib
|
2017-05-15 03:08:30 -07:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2018-03-12 15:45:13 -07:00
|
|
|
, pythonOlder
|
2017-05-15 03:08:30 -07:00
|
|
|
, pytest
|
2020-03-13 07:06:22 -07:00
|
|
|
, blis
|
|
|
|
, catalogue
|
2017-05-15 03:08:30 -07:00
|
|
|
, cymem
|
2020-03-13 07:06:22 -07:00
|
|
|
, cython
|
2018-09-05 07:22:52 -07:00
|
|
|
, darwin
|
2020-03-13 07:06:22 -07:00
|
|
|
, hypothesis
|
|
|
|
, mock
|
2017-05-15 03:08:30 -07:00
|
|
|
, murmurhash
|
2020-03-13 07:06:22 -07:00
|
|
|
, numpy
|
2018-03-12 15:45:13 -07:00
|
|
|
, pathlib
|
2017-05-15 03:08:30 -07:00
|
|
|
, plac
|
2020-03-13 07:06:22 -07:00
|
|
|
, preshed
|
2019-05-11 06:31:08 -07:00
|
|
|
, srsly
|
2020-03-13 07:06:22 -07:00
|
|
|
, tqdm
|
2019-05-11 06:31:08 -07:00
|
|
|
, wasabi
|
2017-05-15 03:08:30 -07:00
|
|
|
}:
|
|
|
|
|
2018-03-12 15:45:13 -07:00
|
|
|
buildPythonPackage rec {
|
2017-11-09 03:26:09 -08:00
|
|
|
pname = "thinc";
|
2021-03-24 02:28:30 -07:00
|
|
|
version = "8.0.2";
|
2017-05-15 03:08:30 -07:00
|
|
|
|
2018-03-12 15:45:13 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-24 02:28:30 -07:00
|
|
|
sha256 = "20f033b3d9fbd02389d8f828cebcd3a42aee3e17ed4c2d56c6d5163af83a9cee";
|
2017-05-15 03:08:30 -07:00
|
|
|
};
|
|
|
|
|
2020-12-12 02:24:25 -08:00
|
|
|
buildInputs = [ cython ] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
2020-12-12 02:25:57 -08:00
|
|
|
Accelerate
|
|
|
|
CoreFoundation
|
|
|
|
CoreGraphics
|
|
|
|
CoreVideo
|
2018-09-05 07:22:52 -07:00
|
|
|
]);
|
|
|
|
|
2017-05-15 03:08:30 -07:00
|
|
|
propagatedBuildInputs = [
|
2020-12-12 02:25:57 -08:00
|
|
|
blis
|
|
|
|
catalogue
|
|
|
|
cymem
|
|
|
|
murmurhash
|
|
|
|
numpy
|
|
|
|
plac
|
|
|
|
preshed
|
|
|
|
srsly
|
|
|
|
tqdm
|
|
|
|
wasabi
|
2018-03-12 15:45:13 -07:00
|
|
|
] ++ lib.optional (pythonOlder "3.4") pathlib;
|
|
|
|
|
|
|
|
|
|
|
|
checkInputs = [
|
2018-12-15 00:28:44 -08:00
|
|
|
hypothesis
|
|
|
|
mock
|
2018-03-12 15:45:13 -07:00
|
|
|
pytest
|
2017-05-15 03:08:30 -07:00
|
|
|
];
|
|
|
|
|
2018-03-12 15:45:13 -07:00
|
|
|
# Cannot find cython modules.
|
2017-05-15 03:08:30 -07:00
|
|
|
doCheck = false;
|
2017-11-09 03:26:09 -08:00
|
|
|
|
2020-06-20 02:09:18 -07:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py \
|
2020-12-12 02:24:25 -08:00
|
|
|
--replace "blis>=0.4.0,<0.8.0" "blis>=0.4.0,<1.0" \
|
2020-06-20 02:09:18 -07:00
|
|
|
--replace "catalogue>=0.0.7,<1.1.0" "catalogue>=0.0.7,<3.0" \
|
|
|
|
--replace "plac>=0.9.6,<1.2.0" "plac>=0.9.6,<2.0" \
|
|
|
|
--replace "srsly>=0.0.6,<1.1.0" "srsly>=0.0.6,<3.0"
|
|
|
|
'';
|
|
|
|
|
2018-03-12 15:45:13 -07:00
|
|
|
checkPhase = ''
|
|
|
|
pytest thinc/tests
|
|
|
|
'';
|
2017-11-09 03:26:09 -08:00
|
|
|
|
2020-06-20 02:09:18 -07:00
|
|
|
pythonImportsCheck = [ "thinc" ];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2017-05-15 03:08:30 -07:00
|
|
|
description = "Practical Machine Learning for NLP in Python";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/explosion/thinc";
|
2017-05-15 03:08:30 -07:00
|
|
|
license = licenses.mit;
|
2021-02-01 05:50:57 -08:00
|
|
|
maintainers = with maintainers; [ aborsu sdll ];
|
2020-12-12 02:25:57 -08:00
|
|
|
};
|
2017-05-15 03:08:30 -07:00
|
|
|
}
|