python3Packages.graphrag: 1.0.0 -> 1.2.0

https://github.com/microsoft/graphrag/blob/v1.2.0/CHANGELOG.md
This commit is contained in:
Martin Weinelt
2025-01-27 10:55:33 +01:00
parent d512b18bbf
commit e016ecf023
@@ -40,14 +40,14 @@
buildPythonPackage rec {
pname = "graphrag";
version = "1.0.0";
version = "1.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "microsoft";
repo = "graphrag";
rev = "refs/tags/v${version}";
hash = "sha256-037PBiIyxcdJSut9kF4L23wNEJBdKM/M2I/0f4iVayo=";
tag = "v${version}";
hash = "sha256-z3gO0wV8YBNi2Z53avujAt/Es9mSzugEFa/qRgq7ItM=";
};
build-system = [
@@ -115,7 +115,7 @@ buildPythonPackage rec {
meta = {
description = "Modular graph-based Retrieval-Augmented Generation (RAG) system";
homepage = "https://github.com/microsoft/graphrag";
changelog = "https://github.com/microsoft/graphrag/blob/v${version}/CHANGELOG.md";
changelog = "https://github.com/microsoft/graphrag/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ natsukium ];
};