mirror of
https://github.com/denismhz/flake.git
synced 2025-11-09 16:16:23 +01:00
This removes the need to have multiple output variations like invokeai-wsl-amd and instead just uses a simple bash wrapper to discover whether the program is being ran in the WSL
84 lines
1.7 KiB
Nix
84 lines
1.7 KiB
Nix
{ aipython3
|
|
# dependencies
|
|
, streamlit
|
|
# misc
|
|
, lib
|
|
, src
|
|
}:
|
|
|
|
let
|
|
getVersion = lib.flip lib.pipe [
|
|
(src: builtins.readFile "${src}/setup.py")
|
|
(builtins.match ".+VERSION = '([^']+)'.+")
|
|
builtins.head
|
|
];
|
|
in
|
|
|
|
aipython3.buildPythonPackage {
|
|
pname = "InvokeAI";
|
|
version = getVersion src;
|
|
inherit src;
|
|
propagatedBuildInputs = with aipython3; [
|
|
numpy
|
|
albumentations
|
|
opencv4
|
|
pudb
|
|
imageio
|
|
imageio-ffmpeg
|
|
pytorch-lightning
|
|
protobuf
|
|
omegaconf
|
|
test-tube
|
|
((streamlit.overrideAttrs (old: {
|
|
nativeBuildInputs = old.nativeBuildInputs ++ [ pythonRelaxDepsHook ];
|
|
pythonRelaxDeps = [ "protobuf" ];
|
|
})).override { protobuf3 = protobuf; })
|
|
einops
|
|
taming-transformers-rom1504
|
|
torch-fidelity
|
|
torchmetrics
|
|
transformers
|
|
kornia
|
|
k-diffusion
|
|
picklescan
|
|
diffusers
|
|
pypatchmatch
|
|
realesrgan
|
|
pillow
|
|
send2trash
|
|
flask
|
|
flask-socketio
|
|
flask-cors
|
|
dependency-injector
|
|
gfpgan
|
|
eventlet
|
|
clipseg
|
|
getpass-asterisk
|
|
];
|
|
nativeBuildInputs = [ aipython3.pythonRelaxDepsHook ];
|
|
pythonRemoveDeps = [ "clip" "pyreadline3" "flaskwebgui" ];
|
|
pythonRelaxDeps = [ "protobuf" ];
|
|
makeWrapperArgs = [
|
|
'' --run '
|
|
if [ -d "/usr/lib/wsl/lib" ]
|
|
then
|
|
echo "Running via WSL (Windows Subsystem for Linux), setting LD_LIBRARY_PATH=/usr/lib/wsl/lib"
|
|
set -x
|
|
export LD_LIBRARY_PATH="/usr/lib/wsl/lib"
|
|
set +x
|
|
fi
|
|
'
|
|
''
|
|
];
|
|
postFixup = ''
|
|
chmod +x $out/bin/*
|
|
wrapPythonPrograms
|
|
'';
|
|
doCheck = false;
|
|
meta = {
|
|
description = "Fancy Web UI for Stable Diffusion";
|
|
homepage = "https://invoke-ai.github.io/InvokeAI/";
|
|
mainProgram = "invoke.py";
|
|
};
|
|
}
|