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

84 lines
1.3 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
, blis
, catalogue
2017-05-15 11:08:30 +01:00
, cymem
, cython
, darwin
, hypothesis
, mock
2017-05-15 11:08:30 +01:00
, murmurhash
, numpy
2018-03-12 22:45:13 +00:00
, pathlib
2017-05-15 11:08:30 +01:00
, plac
, preshed
2021-04-18 19:02:00 +01:00
, pydantic
2019-05-11 14:31:08 +01:00
, srsly
, tqdm
2019-05-11 14:31:08 +01:00
, wasabi
2017-05-15 11:08:30 +01:00
}:
2018-03-12 22:45:13 +00:00
buildPythonPackage rec {
pname = "thinc";
version = "8.0.3";
2017-05-15 11:08:30 +01:00
2018-03-12 22:45:13 +00:00
src = fetchPypi {
inherit pname version;
hash = "sha256-w3CnpG0BtYjY1fmdjV42s8usRRJjg1b6Qw9/Urs6iJc=";
2017-05-15 11:08:30 +01:00
};
buildInputs = [ cython ] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
2020-12-12 10:25:57 +00:00
Accelerate
CoreFoundation
CoreGraphics
CoreVideo
]);
2017-05-15 11:08:30 +01:00
propagatedBuildInputs = [
2020-12-12 10:25:57 +00:00
blis
catalogue
cymem
murmurhash
numpy
plac
preshed
srsly
tqdm
2021-04-18 19:02:00 +01:00
pydantic
2020-12-12 10:25:57 +00:00
wasabi
2018-03-12 22:45:13 +00:00
] ++ lib.optional (pythonOlder "3.4") pathlib;
checkInputs = [
2018-12-15 08:28:44 +00:00
hypothesis
mock
2018-03-12 22:45:13 +00:00
pytest
2017-05-15 11:08:30 +01:00
];
2018-03-12 22:45:13 +00:00
# Cannot find cython modules.
2017-05-15 11:08:30 +01:00
doCheck = false;
postPatch = ''
2021-04-18 19:02:00 +01:00
substituteInPlace setup.cfg \
--replace "blis>=0.4.0,<0.8.0" "blis>=0.4.0,<1.0" \
2021-04-18 19:02:00 +01:00
--replace "pydantic>=1.7.1,<1.8.0" "pydantic~=1.7"
'';
2018-03-12 22:45:13 +00:00
checkPhase = ''
pytest thinc/tests
'';
pythonImportsCheck = [ "thinc" ];
meta = with lib; {
2017-05-15 11:08:30 +01:00
description = "Practical Machine Learning for NLP in Python";
homepage = "https://github.com/explosion/thinc";
2017-05-15 11:08:30 +01:00
license = licenses.mit;
maintainers = with maintainers; [ aborsu sdll ];
2020-12-12 10:25:57 +00:00
};
2017-05-15 11:08:30 +01:00
}