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

86 lines
1.4 KiB
Nix
Raw Normal View History

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
, cython
, cymem
, darwin
2018-03-12 22:45:13 +00:00
, msgpack-numpy
, msgpack-python
2017-05-15 11:08:30 +01:00
, preshed
, numpy
, 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 {
pname = "thinc";
2018-10-20 11:07:52 +01:00
version = "6.12.0";
2017-05-15 11:08:30 +01:00
2018-03-12 22:45:13 +00:00
src = fetchPypi {
inherit pname version;
2018-10-20 11:07:52 +01:00
sha256 = "0lfdf08v7rrj9b29z2vf8isaqa0zh16acw9im8chkqsh8bay4ykm";
2017-05-15 11:08:30 +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 = [
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 = ''
2018-10-20 11:07:52 +01:00
substituteInPlace setup.py \
--replace "pathlib==1.0.1" "pathlib>=1.0.0,<2.0.0" \
--replace "plac>=0.9.6,<1.0.0" "plac>=0.9.6" \
--replace "wheel>=0.32.0,<0.33.0" "wheel>=0.31.0"
2018-03-12 22:45:13 +00:00
'';
# Cannot find cython modules.
2017-05-15 11:08:30 +01:00
doCheck = false;
2018-03-12 22:45:13 +00:00
checkPhase = ''
pytest thinc/tests
'';
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
};
}