13 buildPythonPackage rec {
14 pname = "chroma-hnswlib";
18 disabled = pythonOlder "3.8";
20 src = fetchFromGitHub {
21 owner = "chroma-core";
23 rev = "refs/tags/${version}";
24 hash = "sha256-pjz5SGg2drO6fkml9ojFG7/Gq3/Y7vPaOHc+3LKnjUw=";
34 nativeCheckInputs = [ pytestCheckHook ];
36 pythonImportsCheck = [ "hnswlib" ];
39 description = "Header-only C++/python library for fast approximate nearest neighbors";
40 homepage = "https://github.com/chroma-core/hnswlib";
41 license = licenses.asl20;
42 maintainers = with maintainers; [ fab ];