Merge pull request #106730 from danieldk/thinc-7.4.5

python3Packages.thinc: 7.4.4 -> 7.4.5
This commit is contained in:
Mario Rodas 2020-12-13 21:00:52 -05:00 committed by GitHub
commit 1b87f82003
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,29 +23,31 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "thinc"; pname = "thinc";
version = "7.4.4"; version = "7.4.5";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "08cf5cf7d70135db931c9f9d6f3b1844c53046c88f6072675fc164884f44c9e2"; sha256 = "5743fde41706252ec6ce4737c68d3505f7e1cc3d4431174a17149838d594f8cb";
}; };
buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ buildInputs = [ cython ] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
Accelerate CoreFoundation CoreGraphics CoreVideo Accelerate
CoreFoundation
CoreGraphics
CoreVideo
]); ]);
propagatedBuildInputs = [ propagatedBuildInputs = [
blis blis
catalogue catalogue
cymem cymem
cython murmurhash
murmurhash numpy
numpy plac
plac preshed
preshed srsly
srsly tqdm
tqdm wasabi
wasabi
] ++ lib.optional (pythonOlder "3.4") pathlib; ] ++ lib.optional (pythonOlder "3.4") pathlib;
@ -60,7 +62,7 @@ buildPythonPackage rec {
postPatch = '' postPatch = ''
substituteInPlace setup.py \ substituteInPlace setup.py \
--replace "blis>=0.4.0,<0.5.0" "blis>=0.4.0,<1.0" \ --replace "blis>=0.4.0,<0.8.0" "blis>=0.4.0,<1.0" \
--replace "catalogue>=0.0.7,<1.1.0" "catalogue>=0.0.7,<3.0" \ --replace "catalogue>=0.0.7,<1.1.0" "catalogue>=0.0.7,<3.0" \
--replace "plac>=0.9.6,<1.2.0" "plac>=0.9.6,<2.0" \ --replace "plac>=0.9.6,<1.2.0" "plac>=0.9.6,<2.0" \
--replace "srsly>=0.0.6,<1.1.0" "srsly>=0.0.6,<3.0" --replace "srsly>=0.0.6,<1.1.0" "srsly>=0.0.6,<3.0"
@ -77,5 +79,5 @@ buildPythonPackage rec {
homepage = "https://github.com/explosion/thinc"; homepage = "https://github.com/explosion/thinc";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ aborsu danieldk sdll ]; maintainers = with maintainers; [ aborsu danieldk sdll ];
}; };
} }