Unverified Commit daab4d43 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.llama-index-vector-stores-postgres: migrate to finalAttrs

parent 15133eb7
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -9,14 +9,14 @@
  psycopg2,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "llama-index-vector-stores-postgres";
  version = "0.7.3";
  pyproject = true;

  src = fetchPypi {
    pname = "llama_index_vector_stores_postgres";
    inherit version;
    inherit (finalAttrs) version;
    hash = "sha256-e1xi5GLWgde42GaLk+WwAjv9Oqr8924rS/z4hdw7ScY=";
  };

@@ -41,4 +41,4 @@ buildPythonPackage rec {
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})