nixpkgs/pkgs/development/python-modules/thinc/default.nix

92 lines
1.5 KiB
Nix
Raw Normal View History

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
, pkgs
, buildPythonPackage
, fetchPypi
2018-03-12 22:45:13 +00:00
, pythonOlder
2017-05-15 10:08:30 +00:00
, pytest
, cython
, cymem
2018-03-12 22:45:13 +00:00
, msgpack-numpy
, msgpack-python
2017-05-15 10:08:30 +00:00
, preshed
, numpy
, python
, murmurhash
2018-03-12 22:45:13 +00:00
, pathlib
2017-05-15 10:08:30 +00:00
, hypothesis
, tqdm
, cytoolz
, plac
, six
, mock
, termcolor
, wrapt
, dill
}:
2018-03-12 22:45:13 +00:00
buildPythonPackage rec {
pname = "thinc";
2018-06-12 16:47:07 +00:00
version = "6.11.2";
2017-05-15 10:08:30 +00:00
2018-03-12 22:45:13 +00:00
src = fetchPypi {
inherit pname version;
2018-06-12 16:47:07 +00:00
sha256 = "028a014192e1914c151222794781d14e1c9fddf47a859aa36077f07871d0c30a";
2017-05-15 10:08:30 +00:00
};
postPatch = ''
substituteInPlace setup.py \
--replace "msgpack-python==" "msgpack-python>=" \
--replace "msgpack-numpy==" "msgpack-numpy>="
'';
2017-05-15 10:08:30 +00:00
propagatedBuildInputs = [
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
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 10:08:30 +00: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 10:08:30 +00:00
doCheck = false;
2018-03-12 22:45:13 +00:00
checkPhase = ''
pytest thinc/tests
'';
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;
2018-03-12 22:45:13 +00:00
maintainers = with maintainers; [ aborsu sdll ];
2017-05-15 10:08:30 +00:00
};
}