12 buildPythonPackage rec {
13 pname = "embedding-reader";
15 format = "setuptools";
17 src = fetchFromGitHub {
20 rev = "refs/tags/${version}";
21 hash = "sha256-paN6rAyH3L7qCfWPr5kXo9Xl57gRMhdcDnoyLJ7II2w=";
24 nativeBuildInputs = [ pythonRelaxDepsHook ];
26 pythonRelaxDeps = [ "pyarrow" ];
28 propagatedBuildInputs = [ fsspec numpy pandas pyarrow ];
30 nativeCheckInputs = [ pytestCheckHook ];
32 pythonImportsCheck = [ "embedding_reader" ];
35 description = "Efficiently read embedding in streaming from any filesystem";
36 homepage = "https://github.com/rom1504/embedding-reader";
37 license = licenses.mit;
38 maintainers = with maintainers; [ samuela ];