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.
This commit is contained in:
Palmer Cox
2025-02-24 22:56:45 -05:00
parent e09ab7d9fc
commit 8a019c473f
@@ -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 ];