Files
nixpkgs/pkgs/by-name/de/deface/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

60 lines
1.4 KiB
Nix

{
lib,
stdenv,
python3,
fetchFromGitHub,
pkgs,
}:
python3.pkgs.buildPythonApplication rec {
pname = "deface";
version = "1.5.0";
pyproject = true;
disabled = python3.pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ORB-HD";
repo = "deface";
tag = "v${version}";
hash = "sha256-/mXWeL6OSgW4BMXtAZD/3UxQUGt7UE5ZvH8CXNCueJo=";
};
build-system = with python3.pkgs; [
setuptools-scm
];
dependencies = with python3.pkgs; [
imageio
imageio-ffmpeg
numpy
onnx
onnxruntime # Nixpkgs onnxruntime is missing CUDA support
opencv-python
scikit-image
tqdm
];
# Native onnxruntime lib used by Python module onnxruntime can't find its other libs without this
makeWrapperArgs = [
''--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ pkgs.onnxruntime ]}"''
];
pythonImportsCheck = [
"deface"
"onnx"
"onnxruntime"
];
meta = {
description = "Video anonymization by face detection";
homepage = "https://github.com/ORB-HD/deface";
changelog = "https://github.com/ORB-HD/deface/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ lurkki ];
mainProgram = "deface";
# terminate called after throwing an instance of 'onnxruntime::OnnxRuntimeException'
broken = stdenv.hostPlatform.system == "aarch64-linux";
};
}