nixpkgs/pkgs/applications/video/deface/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.4 KiB
Nix
Raw Normal View History

2023-08-19 19:33:32 +00:00
{ lib
, stdenv
, python3
, fetchFromGitHub
, pkgs
}:
python3.pkgs.buildPythonApplication rec {
pname = "deface";
version = "1.5.0";
pyproject = true;
disabled = python3.pythonOlder "3.8";
2023-08-19 19:33:32 +00:00
src = fetchFromGitHub {
owner = "ORB-HD";
repo = "deface";
rev = "refs/tags/v${version}";
hash = "sha256-/mXWeL6OSgW4BMXtAZD/3UxQUGt7UE5ZvH8CXNCueJo=";
2023-08-19 19:33:32 +00:00
};
build-system = with python3.pkgs; [
2023-08-19 19:33:32 +00:00
setuptools-scm
];
dependencies = with python3.pkgs; [
2023-08-19 19:33:32 +00:00
imageio
imageio-ffmpeg
numpy
onnx
onnxruntime # Nixpkgs onnxruntime is missing CUDA support
opencv4
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 ]}"''
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "opencv-python" "opencv"
2023-08-19 19:33:32 +00:00
'';
pythonImportsCheck = [ "deface" "onnx" "onnxruntime" ];
meta = {
2023-08-19 19:33:32 +00:00
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 ];
2023-11-27 01:17:53 +00:00
mainProgram = "deface";
# terminate called after throwing an instance of 'onnxruntime::OnnxRuntimeException'
broken = stdenv.hostPlatform.system == "aarch64-linux";
2023-08-19 19:33:32 +00:00
};
}