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:
@@ -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 ];
|
||||
|
||||
Reference in New Issue
Block a user