Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
379 B
Nix
Raw Permalink Normal View History

{
python3Packages,
nixosTests,
withUI ? false,
withTesserocr ? false,
withRapidocr ? false,
withCPU ? false,
}:
2025-04-01 09:25:33 +02:00
(python3Packages.toPythonApplication (
python3Packages.docling-serve.override {
inherit
withUI
withTesserocr
withRapidocr
withCPU
;
}
))
2025-04-01 09:26:12 +02:00
// {
passthru.tests = {
docling-serve = nixosTests.docling-serve;
};
}