a3d4720129
GitOrigin-RevId: e182da8622a354d44c39b3d7a542dc12cd7baa5f
39 lines
853 B
Nix
39 lines
853 B
Nix
{ buildPythonPackage
|
|
, fetchFromGitHub
|
|
, fsspec
|
|
, lib
|
|
, numpy
|
|
, pandas
|
|
, pyarrow
|
|
, pytestCheckHook
|
|
, pythonRelaxDepsHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "embedding-reader";
|
|
version = "1.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rom1504";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-uyeIcAW9O9PR4cqmifC6Lx+Hn6XPb1RH/ksmUWvbdtw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
|
|
pythonRelaxDeps = [ "pyarrow" ];
|
|
|
|
propagatedBuildInputs = [ fsspec numpy pandas pyarrow ];
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "embedding_reader" ];
|
|
|
|
meta = with lib; {
|
|
description = "Efficiently read embedding in streaming from any filesystem";
|
|
homepage = "https://github.com/rom1504/embedding-reader";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ samuela ];
|
|
};
|
|
}
|