about summary refs log tree commit diff
path: root/pkgs/development/python-modules/hnswlib/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/hnswlib/default.nix')
-rw-r--r--pkgs/development/python-modules/hnswlib/default.nix21
1 files changed, 9 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/hnswlib/default.nix b/pkgs/development/python-modules/hnswlib/default.nix
index c3dab17f5336..b5a8c9def667 100644
--- a/pkgs/development/python-modules/hnswlib/default.nix
+++ b/pkgs/development/python-modules/hnswlib/default.nix
@@ -1,9 +1,10 @@
-{ buildPythonPackage
-, hnswlib
-, numpy
-, pybind11
-, setuptools
-, unittestCheckHook
+{
+  buildPythonPackage,
+  hnswlib,
+  numpy,
+  pybind11,
+  setuptools,
+  unittestCheckHook,
 }:
 
 buildPythonPackage {
@@ -17,16 +18,12 @@ buildPythonPackage {
     pybind11
   ];
 
-  nativeCheckInputs = [
-    unittestCheckHook
-  ];
+  nativeCheckInputs = [ unittestCheckHook ];
 
   unittestFlagsArray = [
     "tests/python"
     "--pattern 'bindings_test*.py'"
   ];
 
-  pythonImportsCheck = [
-    "hnswlib"
-  ];
+  pythonImportsCheck = [ "hnswlib" ];
 }