Files
nixpkgs/pkgs/development/python-modules/embedding-reader/default.nix
Martin Weinelt abdf5dc772 treewide: remove pythonRelaxDepsHook references
It is is now provided automatically, when `pythonRelaxDeps` or
`pythonRemoveDeps` is defined through `mk-python-derivation`.
2024-06-14 14:52:00 +02:00

45 lines
843 B
Nix

{
buildPythonPackage,
fetchFromGitHub,
fsspec,
lib,
numpy,
pandas,
pyarrow,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "embedding-reader";
version = "1.7.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "rom1504";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-paN6rAyH3L7qCfWPr5kXo9Xl57gRMhdcDnoyLJ7II2w=";
};
pythonRelaxDeps = [ "pyarrow" ];
propagatedBuildInputs = [
fsspec
numpy
pandas
pyarrow
];
nativeCheckInputs = [ 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 ];
};
}