Files
Fabian Affolter ea4927edc4 python3Packages.comfyui-frontend-package: 1.48.7 -> 1.50.6
This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:15 +02:00

41 lines
995 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
comfyui,
}:
buildPythonPackage (finalAttrs: {
pname = "comfyui-frontend-package";
version = "1.50.6";
pyproject = true;
src = fetchPypi {
pname = "comfyui_frontend_package";
inherit (finalAttrs) version;
hash = "sha256-r/9TR9sv7OmiEyD2PEPKONh4en8hLlpZuQe2OLMtX44=";
};
build-system = [ setuptools ];
env = {
COMFYUI_FRONTEND_VERSION = finalAttrs.version;
};
# Package only ships the prebuilt frontend bundle; no tests.
doCheck = false;
pythonImportsCheck = [ "comfyui_frontend_package" ];
meta = {
description = "Frontend assets for ComfyUI";
homepage = "https://github.com/Comfy-Org/ComfyUI_frontend";
license = lib.licenses.gpl3Only;
inherit (comfyui.meta) maintainers;
# The frontend is fetched as a prebuilt PyPI sdist. Building from source
# is tracked as a follow-up (see nixpkgs#441841).
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
};
})