Files
nixpkgs/pkgs/development/python-modules/k-diffusion/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

73 lines
1.2 KiB
Nix

{
lib,
accelerate,
buildPythonPackage,
clean-fid,
clip-anytorch,
dctorch,
einops,
fetchFromGitHub,
jsonmerge,
kornia,
pillow,
pythonOlder,
rotary-embedding-torch,
safetensors,
scikit-image,
scipy,
torch,
torchdiffeq,
torchsde,
torchvision,
tqdm,
wandb,
}:
buildPythonPackage rec {
pname = "k-diffusion";
version = "0.1.1.post1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "crowsonkb";
repo = "k-diffusion";
tag = "v${version}";
hash = "sha256-x/UHzobQv5ov0luUHqC8OA5YbtF+aWL39/SQtzTm0RM=";
};
propagatedBuildInputs = [
accelerate
clean-fid
clip-anytorch
dctorch
einops
jsonmerge
kornia
pillow
rotary-embedding-torch
scikit-image
scipy
safetensors
torch
torchdiffeq
torchsde
torchvision
tqdm
wandb
];
pythonImportsCheck = [ "k_diffusion" ];
# no tests
doCheck = false;
meta = {
description = "Karras et al. (2022) diffusion models for PyTorch";
homepage = "https://github.com/crowsonkb/k-diffusion";
license = lib.licenses.mit;
teams = [ lib.teams.tts ];
};
}