Commit 8a019c47 authored by Palmer Cox's avatar Palmer Cox
Browse files

python312Packages.embedding-reader: Fix build

The dependency "tqdm" was missing. Also, I changed
"propagatedBuildInputs" to "dependencies" as its my understanding that
that is now a best practice.
parent e09ab7d9
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@
  pandas,
  pyarrow,
  pytestCheckHook,
  tqdm,
}:

buildPythonPackage rec {
@@ -23,11 +24,12 @@ buildPythonPackage rec {

  pythonRelaxDeps = [ "pyarrow" ];

  propagatedBuildInputs = [
  dependencies = [
    fsspec
    numpy
    pandas
    pyarrow
    tqdm
  ];

  nativeCheckInputs = [ pytestCheckHook ];