lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python310Packages.hnswlib: init at 0.7.0

authored by

natsukium and committed by
Yt
463935ed 6a1255d2

+36
+32
pkgs/development/python-modules/hnswlib/default.nix
··· 1 + { buildPythonPackage 2 + , hnswlib 3 + , numpy 4 + , pybind11 5 + , setuptools 6 + , unittestCheckHook 7 + }: 8 + 9 + buildPythonPackage { 10 + pname = "hnswlib"; 11 + inherit (hnswlib) version src meta; 12 + format = "pyproject"; 13 + 14 + nativeBuildInputs = [ 15 + numpy 16 + setuptools 17 + pybind11 18 + ]; 19 + 20 + nativeCheckInputs = [ 21 + unittestCheckHook 22 + ]; 23 + 24 + unittestFlagsArray = [ 25 + "tests/python" 26 + "--pattern 'bindings_test*.py'" 27 + ]; 28 + 29 + pythonImportsCheck = [ 30 + "hnswlib" 31 + ]; 32 + }
+4
pkgs/top-level/python-packages.nix
··· 4764 4764 4765 4765 hlk-sw16 = callPackage ../development/python-modules/hlk-sw16 { }; 4766 4766 4767 + hnswlib = callPackage ../development/python-modules/hnswlib { 4768 + inherit (pkgs) hnswlib; 4769 + }; 4770 + 4767 4771 hmmlearn = callPackage ../development/python-modules/hmmlearn { }; 4768 4772 4769 4773 hocr-tools = callPackage ../development/python-modules/hocr-tools { };