From d700196231a3206c3dd7fba96e937440ab3612ab Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 16 Jan 2026 20:20:10 +0100 Subject: [PATCH] python3Packages.llama-index-vector-stores-milvus: migrate to finalAttrs --- .../llama-index-vector-stores-milvus/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/llama-index-vector-stores-milvus/default.nix b/pkgs/development/python-modules/llama-index-vector-stores-milvus/default.nix index 3da191b78539..4f6a0b167520 100644 --- a/pkgs/development/python-modules/llama-index-vector-stores-milvus/default.nix +++ b/pkgs/development/python-modules/llama-index-vector-stores-milvus/default.nix @@ -7,14 +7,14 @@ pymilvus, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "llama-index-vector-stores-milvus"; version = "0.9.6"; pyproject = true; src = fetchPypi { pname = "llama_index_vector_stores_milvus"; - inherit version; + inherit (finalAttrs) version; hash = "sha256-bTisWTmlcOAkBof1T77k4f9sX6otKNJTd6PzjSygfis="; }; @@ -36,4 +36,4 @@ buildPythonPackage rec { license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; -} +})