Merge pull request #106730 from danieldk/thinc-7.4.5

python3Packages.thinc: 7.4.4 -> 7.4.5

authored by

Mario Rodas and committed by
GitHub
1b87f820 6fb38c93

+19 -17
+19 -17
pkgs/development/python-modules/thinc/default.nix
··· 23 23 24 24 buildPythonPackage rec { 25 25 pname = "thinc"; 26 - version = "7.4.4"; 26 + version = "7.4.5"; 27 27 28 28 src = fetchPypi { 29 29 inherit pname version; 30 - sha256 = "08cf5cf7d70135db931c9f9d6f3b1844c53046c88f6072675fc164884f44c9e2"; 30 + sha256 = "5743fde41706252ec6ce4737c68d3505f7e1cc3d4431174a17149838d594f8cb"; 31 31 }; 32 32 33 - buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ 34 - Accelerate CoreFoundation CoreGraphics CoreVideo 33 + buildInputs = [ cython ] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ 34 + Accelerate 35 + CoreFoundation 36 + CoreGraphics 37 + CoreVideo 35 38 ]); 36 39 37 40 propagatedBuildInputs = [ 38 - blis 39 - catalogue 40 - cymem 41 - cython 42 - murmurhash 43 - numpy 44 - plac 45 - preshed 46 - srsly 47 - tqdm 48 - wasabi 41 + blis 42 + catalogue 43 + cymem 44 + murmurhash 45 + numpy 46 + plac 47 + preshed 48 + srsly 49 + tqdm 50 + wasabi 49 51 ] ++ lib.optional (pythonOlder "3.4") pathlib; 50 52 51 53 ··· 60 62 61 63 postPatch = '' 62 64 substituteInPlace setup.py \ 63 - --replace "blis>=0.4.0,<0.5.0" "blis>=0.4.0,<1.0" \ 65 + --replace "blis>=0.4.0,<0.8.0" "blis>=0.4.0,<1.0" \ 64 66 --replace "catalogue>=0.0.7,<1.1.0" "catalogue>=0.0.7,<3.0" \ 65 67 --replace "plac>=0.9.6,<1.2.0" "plac>=0.9.6,<2.0" \ 66 68 --replace "srsly>=0.0.6,<1.1.0" "srsly>=0.0.6,<3.0" ··· 77 79 homepage = "https://github.com/explosion/thinc"; 78 80 license = licenses.mit; 79 81 maintainers = with maintainers; [ aborsu danieldk sdll ]; 80 - }; 82 + }; 81 83 }