From 5d6ade75cfad45a37e304915b9face97325ba282 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20de=20Kok?= Date: Sat, 12 Dec 2020 11:25:57 +0100 Subject: [PATCH] python3Packages.thinc: nixpkgs-fmt --- .../python-modules/thinc/default.nix | 27 ++++++++++--------- 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/thinc/default.nix b/pkgs/development/python-modules/thinc/default.nix index ed9beedf95e7..cfc926424605 100644 --- a/pkgs/development/python-modules/thinc/default.nix +++ b/pkgs/development/python-modules/thinc/default.nix @@ -31,20 +31,23 @@ buildPythonPackage rec { }; buildInputs = [ cython ] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ - Accelerate CoreFoundation CoreGraphics CoreVideo + Accelerate + CoreFoundation + CoreGraphics + CoreVideo ]); propagatedBuildInputs = [ - blis - catalogue - cymem - murmurhash - numpy - plac - preshed - srsly - tqdm - wasabi + blis + catalogue + cymem + murmurhash + numpy + plac + preshed + srsly + tqdm + wasabi ] ++ lib.optional (pythonOlder "3.4") pathlib; @@ -76,5 +79,5 @@ buildPythonPackage rec { homepage = "https://github.com/explosion/thinc"; license = licenses.mit; maintainers = with maintainers; [ aborsu danieldk sdll ]; - }; + }; }