2017-05-15 11:08:30 +01:00
|
|
|
{ stdenv
|
2018-03-12 22:45:13 +00:00
|
|
|
, lib
|
2017-05-15 11:08:30 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2018-03-12 22:45:13 +00:00
|
|
|
, pythonOlder
|
2017-05-15 11:08:30 +01:00
|
|
|
, pytest
|
2020-03-13 14:06:22 +00:00
|
|
|
, blis
|
|
|
|
, catalogue
|
2017-05-15 11:08:30 +01:00
|
|
|
, cymem
|
2020-03-13 14:06:22 +00:00
|
|
|
, cython
|
2018-09-05 15:22:52 +01:00
|
|
|
, darwin
|
2020-03-13 14:06:22 +00:00
|
|
|
, hypothesis
|
|
|
|
, mock
|
2017-05-15 11:08:30 +01:00
|
|
|
, murmurhash
|
2020-03-13 14:06:22 +00:00
|
|
|
, numpy
|
2018-03-12 22:45:13 +00:00
|
|
|
, pathlib
|
2017-05-15 11:08:30 +01:00
|
|
|
, plac
|
2020-03-13 14:06:22 +00:00
|
|
|
, preshed
|
2019-05-11 14:31:08 +01:00
|
|
|
, srsly
|
2020-03-13 14:06:22 +00:00
|
|
|
, tqdm
|
2019-05-11 14:31:08 +01:00
|
|
|
, wasabi
|
2017-05-15 11:08:30 +01:00
|
|
|
}:
|
|
|
|
|
2018-03-12 22:45:13 +00:00
|
|
|
buildPythonPackage rec {
|
2017-11-09 11:26:09 +00:00
|
|
|
pname = "thinc";
|
2020-05-27 07:01:34 +01:00
|
|
|
version = "7.4.1";
|
2017-05-15 11:08:30 +01:00
|
|
|
|
2018-03-12 22:45:13 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-27 07:01:34 +01:00
|
|
|
sha256 = "17lampllwq50yjl2djs9bs5rp29xw55gqj762npqi3cvvj2glf81";
|
2017-05-15 11:08:30 +01:00
|
|
|
};
|
|
|
|
|
2018-09-05 15:22:52 +01:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
|
|
Accelerate CoreFoundation CoreGraphics CoreVideo
|
|
|
|
]);
|
|
|
|
|
2017-05-15 11:08:30 +01:00
|
|
|
propagatedBuildInputs = [
|
2019-05-11 14:31:08 +01:00
|
|
|
blis
|
2020-03-13 14:06:22 +00:00
|
|
|
catalogue
|
2017-05-15 11:08:30 +01:00
|
|
|
cymem
|
2020-03-13 14:06:22 +00:00
|
|
|
cython
|
2017-05-15 11:08:30 +01:00
|
|
|
murmurhash
|
2020-03-13 14:06:22 +00:00
|
|
|
numpy
|
2017-05-15 11:08:30 +01:00
|
|
|
plac
|
2020-03-13 14:06:22 +00:00
|
|
|
preshed
|
2019-05-11 14:31:08 +01:00
|
|
|
srsly
|
2020-03-13 14:06:22 +00:00
|
|
|
tqdm
|
2019-05-11 14:31:08 +01: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 11:08:30 +01:00
|
|
|
];
|
|
|
|
|
2018-03-12 22:45:13 +00:00
|
|
|
# Cannot find cython modules.
|
2017-05-15 11:08:30 +01:00
|
|
|
doCheck = false;
|
2017-11-09 11:26:09 +00:00
|
|
|
|
2020-06-20 10:09:18 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py \
|
|
|
|
--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 22:45:13 +00:00
|
|
|
checkPhase = ''
|
|
|
|
pytest thinc/tests
|
|
|
|
'';
|
2017-11-09 11:26:09 +00:00
|
|
|
|
2020-06-20 10:09:18 +01:00
|
|
|
pythonImportsCheck = [ "thinc" ];
|
|
|
|
|
2017-05-15 11:08:30 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Practical Machine Learning for NLP in Python";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/explosion/thinc";
|
2017-05-15 11:08:30 +01:00
|
|
|
license = licenses.mit;
|
2019-07-11 15:33:52 +01:00
|
|
|
maintainers = with maintainers; [ aborsu danieldk sdll ];
|
2017-05-15 11:08:30 +01:00
|
|
|
};
|
|
|
|
}
|