diff options
Diffstat (limited to 'pkgs/development/python-modules/floret/default.nix')
-rw-r--r-- | pkgs/development/python-modules/floret/default.nix | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/floret/default.nix b/pkgs/development/python-modules/floret/default.nix index 6ca020ac81df..b2e1099e2015 100644 --- a/pkgs/development/python-modules/floret/default.nix +++ b/pkgs/development/python-modules/floret/default.nix @@ -1,12 +1,13 @@ -{ lib -, buildPythonPackage -, pythonOlder -, fetchFromGitHub -, pybind11 -, setuptools -, wheel -, numpy -, pytestCheckHook +{ + lib, + buildPythonPackage, + pythonOlder, + fetchFromGitHub, + pybind11, + setuptools, + wheel, + numpy, + pytestCheckHook, }: buildPythonPackage rec { @@ -23,7 +24,7 @@ buildPythonPackage rec { hash = "sha256-7vkw6H0ZQoHEwNusY6QWh/vPbSCdP1ZaaqABHsZH6hQ="; }; - patches = [./cstdint.patch ]; + patches = [ ./cstdint.patch ]; nativeBuildInputs = [ pybind11 @@ -38,9 +39,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "floret" ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; meta = with lib; { description = "FastText + Bloom embeddings for compact, full-coverage vectors with spaCy"; |