python3Packages.redisvl: init at 0.19.0

This commit is contained in:
codgician
2026-05-29 18:46:04 +08:00
parent 0127c8be00
commit 82ffc507e4
2 changed files with 59 additions and 0 deletions
@@ -0,0 +1,57 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
numpy,
pyyaml,
redis,
pydantic,
tenacity,
ml-dtypes,
python-ulid,
jsonpath-ng,
}:
buildPythonPackage (finalAttrs: {
pname = "redisvl";
version = "0.19.0";
pyproject = true;
src = fetchFromGitHub {
owner = "redis";
repo = "redis-vl-python";
tag = "v${finalAttrs.version}";
hash = "sha256-x8HotooGv1u5uGls1Y9HiioVzpF+MT6oYspdmZUpgh0=";
};
build-system = [ hatchling ];
dependencies = [
numpy
pyyaml
redis
pydantic
tenacity
ml-dtypes
python-ulid
jsonpath-ng
];
pythonImportsCheck = [ "redisvl" ];
# tests require a live Redis server with the search/vector module
doCheck = false;
meta = {
description = "Python client library and CLI for using Redis as a vector database";
homepage = " https://redisvl.com";
changelog = "https://github.com/redis/redis-vl-python/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
mainProgram = "rvl";
maintainers = with lib.maintainers; [
codgician
hythera
];
};
})
+2
View File
@@ -16809,6 +16809,8 @@ self: super: with self; {
redis-om = callPackage ../development/python-modules/redis-om { };
redisvl = callPackage ../development/python-modules/redisvl { };
redshift-connector = callPackage ../development/python-modules/redshift-connector { };
reedsolo = callPackage ../development/python-modules/reedsolo { };