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
|
|
|
, pkgs
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2018-03-12 22:45:13 +00:00
|
|
|
, pythonOlder
|
2017-05-15 11:08:30 +01:00
|
|
|
, pytest
|
|
|
|
, cython
|
|
|
|
, cymem
|
2018-03-12 22:45:13 +00:00
|
|
|
, msgpack-numpy
|
|
|
|
, msgpack-python
|
2017-05-15 11:08:30 +01:00
|
|
|
, preshed
|
|
|
|
, numpy
|
|
|
|
, python
|
|
|
|
, murmurhash
|
2018-03-12 22:45:13 +00:00
|
|
|
, pathlib
|
2017-05-15 11:08:30 +01:00
|
|
|
, hypothesis
|
|
|
|
, tqdm
|
|
|
|
, cytoolz
|
|
|
|
, plac
|
|
|
|
, six
|
|
|
|
, mock
|
|
|
|
, termcolor
|
|
|
|
, wrapt
|
|
|
|
, dill
|
|
|
|
}:
|
|
|
|
|
2018-03-12 22:45:13 +00:00
|
|
|
buildPythonPackage rec {
|
2017-11-09 11:26:09 +00:00
|
|
|
pname = "thinc";
|
2018-03-12 22:45:13 +00:00
|
|
|
version = "6.10.2";
|
2017-05-15 11:08:30 +01:00
|
|
|
|
2018-03-12 22:45:13 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0xia81wvfrhyriywab184s49g8rpl42vcf5fy3x6xxw50a2yn7cs";
|
2017-05-15 11:08:30 +01:00
|
|
|
};
|
|
|
|
|
2018-04-07 15:12:42 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py \
|
|
|
|
--replace "msgpack-python==" "msgpack-python>=" \
|
|
|
|
--replace "msgpack-numpy==" "msgpack-numpy>="
|
|
|
|
'';
|
|
|
|
|
2017-05-15 11:08:30 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
cython
|
|
|
|
cymem
|
2018-03-12 22:45:13 +00:00
|
|
|
msgpack-numpy
|
|
|
|
msgpack-python
|
2017-05-15 11:08:30 +01:00
|
|
|
preshed
|
|
|
|
numpy
|
|
|
|
murmurhash
|
|
|
|
pytest
|
|
|
|
hypothesis
|
|
|
|
tqdm
|
|
|
|
cytoolz
|
|
|
|
plac
|
|
|
|
six
|
|
|
|
mock
|
|
|
|
termcolor
|
|
|
|
wrapt
|
|
|
|
dill
|
2018-03-12 22:45:13 +00:00
|
|
|
] ++ lib.optional (pythonOlder "3.4") pathlib;
|
|
|
|
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
pytest
|
2017-05-15 11:08:30 +01:00
|
|
|
];
|
|
|
|
|
2018-03-12 22:45:13 +00:00
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace setup.py --replace \
|
|
|
|
"'pathlib>=1.0.0,<2.0.0'," \
|
|
|
|
"\"pathlib>=1.0.0,<2.0.0; python_version<'3.4'\","
|
|
|
|
|
|
|
|
substituteInPlace setup.py --replace \
|
|
|
|
"'cytoolz>=0.8,<0.9'," \
|
|
|
|
"'cytoolz>=0.8',"
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Cannot find cython modules.
|
2017-05-15 11:08:30 +01: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 11:08:30 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Practical Machine Learning for NLP in Python";
|
|
|
|
homepage = https://github.com/explosion/thinc;
|
|
|
|
license = licenses.mit;
|
2018-03-12 22:45:13 +00:00
|
|
|
maintainers = with maintainers; [ aborsu sdll ];
|
2017-05-15 11:08:30 +01:00
|
|
|
};
|
|
|
|
}
|