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

87 lines
1.3 KiB
Nix
Raw Normal View History

2017-05-15 12:08:30 +02:00
{ stdenv
2018-03-12 23:45:13 +01:00
, lib
2017-05-15 12:08:30 +02:00
, pkgs
, buildPythonPackage
, fetchPypi
2018-03-12 23:45:13 +01:00
, pythonOlder
2017-05-15 12:08:30 +02:00
, pytest
, cython
, cymem
2018-03-12 23:45:13 +01:00
, msgpack-numpy
, msgpack-python
2017-05-15 12:08:30 +02:00
, preshed
, numpy
, python
, murmurhash
2018-03-12 23:45:13 +01:00
, pathlib
2017-05-15 12:08:30 +02:00
, hypothesis
, tqdm
, cytoolz
, plac
, six
, mock
, termcolor
, wrapt
, dill
}:
2018-03-12 23:45:13 +01:00
buildPythonPackage rec {
pname = "thinc";
2018-03-12 23:45:13 +01:00
version = "6.10.2";
name = pname + "-" + version;
2017-05-15 12:08:30 +02:00
2018-03-12 23:45:13 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "0xia81wvfrhyriywab184s49g8rpl42vcf5fy3x6xxw50a2yn7cs";
2017-05-15 12:08:30 +02:00
};
propagatedBuildInputs = [
cython
cymem
2018-03-12 23:45:13 +01:00
msgpack-numpy
msgpack-python
2017-05-15 12:08:30 +02:00
preshed
numpy
murmurhash
pytest
hypothesis
tqdm
cytoolz
plac
six
mock
termcolor
wrapt
dill
2018-03-12 23:45:13 +01:00
] ++ lib.optional (pythonOlder "3.4") pathlib;
checkInputs = [
pytest
2017-05-15 12:08:30 +02:00
];
2018-03-12 23:45:13 +01: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 12:08:30 +02:00
doCheck = false;
2018-03-12 23:45:13 +01:00
checkPhase = ''
pytest thinc/tests
'';
2017-05-15 12:08:30 +02: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 23:45:13 +01:00
maintainers = with maintainers; [ aborsu sdll ];
2017-05-15 12:08:30 +02:00
};
}