python312Packages.sparsezoo: fix by relaxing numpy (#393245)

This commit is contained in:
Gaétan Lepage
2025-03-26 01:12:31 +01:00
committed by GitHub
@@ -11,13 +11,13 @@
geocoder,
numpy,
onnx,
pyyaml,
requests,
tqdm,
pandas,
protobuf,
py-machineid,
pydantic,
pyyaml,
requests,
tqdm,
# checks
matplotlib,
@@ -38,20 +38,23 @@ buildPythonPackage rec {
build-system = [ setuptools ];
pythonRelaxDeps = [ "onnx" ];
pythonRelaxDeps = [
"numpy"
"onnx"
];
dependencies = [
click
geocoder
numpy
onnx
pyyaml
requests
tqdm
pandas
protobuf
py-machineid
pydantic
pyyaml
requests
tqdm
];
pythonImportsCheck = [ "sparsezoo" ];