python3Packages.txtai: 8.1.0 -> 8.2.0

This commit is contained in:
Martin Weinelt
2025-01-27 10:57:44 +01:00
parent 2df9c484ca
commit 5a22b2e497
@@ -217,11 +217,6 @@ let
all
;
};
in
buildPythonPackage {
pname = "txtai";
inherit version;
pyproject = true;
src = fetchFromGitHub {
owner = "neuml";
@@ -229,6 +224,11 @@ buildPythonPackage {
tag = "v${version}";
hash = "sha256-fMzCYw9eqlpGI5FKoyYyxT17EhUFmFP9lrCn/LFC6ks=";
};
in
buildPythonPackage {
pname = "txtai";
inherit version src;
pyproject = true;
build-system = [ setuptools ];
@@ -298,7 +298,7 @@ buildPythonPackage {
meta = {
description = "Semantic search and workflows powered by language models";
changelog = "https://github.com/neuml/txtai/releases/tag/v${version}";
changelog = "https://github.com/neuml/txtai/releases/tag/${src.tag}";
homepage = "https://github.com/neuml/txtai";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ happysalada ];