Merge pull request #287795 from ocfox/fix-quark-engine

quark-engine: fix build
This commit is contained in:
Fabian Affolter 2024-02-10 20:21:22 +01:00 committed by GitHub
commit 216633370e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,6 +18,7 @@ python3.pkgs.buildPythonApplication rec {
nativeBuildInputs = with python3.pkgs; [
setuptools
pythonRelaxDepsHook
];
propagatedBuildInputs = with python3.pkgs; [
@ -36,6 +37,10 @@ python3.pkgs.buildPythonApplication rec {
tqdm
];
pythonRelaxDeps = [
"r2pipe"
];
# Project has no tests
doCheck = false;