about summary refs log tree commit diff
path: root/pkgs/development/python-modules/navec/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/navec/default.nix')
-rw-r--r--pkgs/development/python-modules/navec/default.nix25
1 files changed, 16 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/navec/default.nix b/pkgs/development/python-modules/navec/default.nix
index e5712212eb698..8369edba21699 100644
--- a/pkgs/development/python-modules/navec/default.nix
+++ b/pkgs/development/python-modules/navec/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, numpy
-, razdel
-, gensim
-, pytestCheckHook
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  numpy,
+  razdel,
+  gensim,
+  pytestCheckHook,
 }:
 
 buildPythonPackage rec {
@@ -17,8 +18,14 @@ buildPythonPackage rec {
     hash = "sha256-TyNHSxwnmvbGBfhOeHPofEfKWLDFOKP50w2QxgnJ/SE=";
   };
 
-  propagatedBuildInputs = [ numpy razdel ];
-  nativeCheckInputs = [ pytestCheckHook gensim ];
+  propagatedBuildInputs = [
+    numpy
+    razdel
+  ];
+  nativeCheckInputs = [
+    pytestCheckHook
+    gensim
+  ];
   # TODO: remove when gensim usage will be fixed in `navec`.
   disabledTests = [ "test_gensim" ];
   pythonImportsCheck = [ "navec" ];