Files
nixpkgs/pkgs/development/python-modules/invisible-watermark/default.nix
T
NAHO c8d4dabc43 pkgs: remove optional builtins prefixes from prelude functions
Remove optional builtins prefixes from prelude functions by running:

    builtins=(
      abort
      baseNameOf
      break
      derivation
      derivationStrict
      dirOf
      false
      fetchGit
      fetchMercurial
      fetchTarball
      fetchTree
      fromTOML
      import
      isNull
      map
      null
      placeholder
      removeAttrs
      scopedImport
      throw
      toString
      true
    )

    fd \
      --type file \
      . \
      pkgs \
      --exec-batch sed --in-place --regexp-extended "
        s/\<builtins\.($(
          printf '%s\n' "${builtins[@]}" |
            paste --delimiter '|' --serial -
        ))\>/\1/g
      "

    nix fmt
2025-10-04 19:02:37 +02:00

106 lines
2.6 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
setuptools,
opencv-python,
torch,
onnx,
onnxruntime,
pillow,
pywavelets,
numpy,
callPackage,
withOnnx ? false, # Enables the rivaGan en- and decoding method
}:
buildPythonPackage rec {
pname = "invisible-watermark";
version = "0.2.0";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "ShieldMnt";
repo = "invisible-watermark";
# nixpkgs-update: no auto update
rev = "e58e451cff7e092457cd915e445b1a20b64a7c8f"; # No git tag, see https://github.com/ShieldMnt/invisible-watermark/issues/22
hash = "sha256-6SjVpKFtiiLLU7tZ3hBQr0KT/YEQyywJj0e21/dJRzk=";
};
build-system = [ setuptools ];
dependencies = [
opencv-python
torch
pillow
pywavelets
numpy
]
++ lib.optionals withOnnx [
onnx
onnxruntime
];
postPatch = ''
substituteInPlace imwatermark/rivaGan.py --replace \
'You can install it with pip: `pip install onnxruntime`.' \
'You can install it with an override: `python3Packages.invisible-watermark.override { withOnnx = true; };`.'
'';
passthru.tests =
let
image = "${src}/test_vectors/original.jpg";
methods = [
"dwtDct"
"dwtDctSvd"
"rivaGan"
];
testCases = builtins.concatMap (method: [
{
method = method;
withOnnx = true;
}
{
method = method;
withOnnx = false;
}
]) methods;
createTest =
{ method, withOnnx }:
let
testName = "${if withOnnx then "withOnnx" else "withoutOnnx"}-${method}";
# This test fails in the sandbox on aarch64-linux, see https://github.com/microsoft/onnxruntime/issues/10038
skipTest =
stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64 && withOnnx && method == "rivaGan";
in
lib.optionalAttrs (!skipTest) {
"${testName}" = callPackage ./tests/cli.nix {
inherit
image
method
testName
withOnnx
;
};
};
allTests = map createTest testCases;
in
(lib.attrsets.mergeAttrsList allTests)
// {
python = callPackage ./tests/python { inherit image; };
};
pythonImportsCheck = [ "imwatermark" ];
meta = {
description = "Library for creating and decoding invisible image watermarks";
mainProgram = "invisible-watermark";
homepage = "https://github.com/ShieldMnt/invisible-watermark";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ Luflosi ];
};
}