nixpkgs/pkgs/development/python-modules/thinc/default.nix
Daniël de Kok a745dfac15 pythonPackages.thinc: 7.0.4 -> 7.0.6
7.0.5 and 7.0.6 contain fixes for pickle, unflatten, and threading.

https://github.com/explosion/thinc/releases/tag/v7.0.5
https://github.com/explosion/thinc/releases/tag/v7.0.6

Add myself to the list of maintainers, since I seem to be maintaining
this ;).
2019-07-11 16:33:52 +02:00

87 lines
1.3 KiB
Nix

{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, pytest
, cython
, cymem
, darwin
, msgpack-numpy
, msgpack-python
, preshed
, numpy
, murmurhash
, pathlib
, hypothesis
, tqdm
, cytoolz
, plac
, six
, mock
, wrapt
, dill
, blis
, srsly
, wasabi
}:
buildPythonPackage rec {
pname = "thinc";
version = "7.0.6";
src = fetchPypi {
inherit pname version;
sha256 = "12d0766z7ksqpqrvldi46mx0z4zsbgncda4fpvxra1d6vbchf8ba";
};
buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
Accelerate CoreFoundation CoreGraphics CoreVideo
]);
propagatedBuildInputs = [
blis
cython
cymem
msgpack-numpy
msgpack-python
preshed
numpy
murmurhash
tqdm
cytoolz
plac
six
srsly
wrapt
dill
wasabi
] ++ lib.optional (pythonOlder "3.4") pathlib;
checkInputs = [
hypothesis
mock
pytest
];
prePatch = ''
substituteInPlace setup.py \
--replace "plac>=0.9.6,<1.0.0" "plac>=0.9.6"
'';
# Cannot find cython modules.
doCheck = false;
checkPhase = ''
pytest thinc/tests
'';
meta = with stdenv.lib; {
description = "Practical Machine Learning for NLP in Python";
homepage = https://github.com/explosion/thinc;
license = licenses.mit;
maintainers = with maintainers; [ aborsu danieldk sdll ];
};
}