python3Packages.llama-index-graph-stores-neo4j: migrate to finalAttrs

This commit is contained in:
Fabian Affolter
2026-03-01 09:25:09 +01:00
committed by GitHub
parent 64166578f4
commit e328cf1df4
@@ -7,14 +7,14 @@
neo4j,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "llama-index-graph-stores-neo4j";
version = "0.5.2";
pyproject = true;
src = fetchPypi {
pname = "llama_index_graph_stores_neo4j";
inherit version;
inherit (finalAttrs) version;
hash = "sha256-TPPZyKD6sFX/qsHSTiidT6idXnW1edSv1ZbOXopa3lI=";
};
@@ -38,4 +38,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})