Files
Fabian Affolter a7441b6046 python3Packages.comfyui-embedded-docs: 0.5.9 -> 0.5.10
This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:15 +02:00

34 lines
737 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
comfyui,
}:
buildPythonPackage (finalAttrs: {
pname = "comfyui-embedded-docs";
version = "0.5.10";
pyproject = true;
src = fetchPypi {
pname = "comfyui_embedded_docs";
inherit (finalAttrs) version;
hash = "sha256-n+rSPl4vztj+Wz0oVbPNPGmvziYeHyh0fbEh03NaKuo=";
};
build-system = [ setuptools ];
# Package only ships static Markdown documentation; no tests.
doCheck = false;
pythonImportsCheck = [ "comfyui_embedded_docs" ];
meta = {
description = "Embedded node documentation for ComfyUI";
homepage = "https://github.com/Comfy-Org/embedded-docs";
license = lib.licenses.gpl3Only;
inherit (comfyui.meta) maintainers;
};
})