This commit is contained in:
mjallen18
2026-02-04 13:08:34 -06:00
parent aa7fc9c228
commit 87fb1c96e5
10 changed files with 387 additions and 16 deletions

View File

@@ -0,0 +1,24 @@
{ python3Packages, fetchFromGitHub, lib, ... }:
python3Packages.buildPythonPackage rec {
pname = "comfy-aimdo";
version = "0.1.7";
format = "pyproject";
# Comfy-Org/comfy-aimdo/releases/tag/v0.1.7
src = fetchFromGitHub {
owner = "Comfy-Org";
repo = "comfy-aimdo";
rev = "v${version}";
sha256 = "sha256-RNORTKtnTHZ4lcEx5gM3jSr+ZffrV8cd+x74NeRhlsM=";
};
buildInputs = with python3Packages; [
setuptools
setuptools-scm
];
nativeBuildInputs = with python3Packages; [
build
wheel
];
doCheck = false;
}