depot/third_party/nixpkgs/pkgs/development/python-modules/willow/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

63 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
flit-core,
# dependencies
filetype,
defusedxml,
# optional-dependencies
pillow-heif,
# tests
numpy,
opencv4,
pillow,
pytestCheckHook,
wand,
}:
buildPythonPackage rec {
pname = "willow";
version = "1.8.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "wagtail";
repo = "Willow";
rev = "refs/tags/v${version}";
hash = "sha256-g9/v56mdo0sJe5Pl/to/R/kXayaKK3qaYbnnPXpFjXE=";
};
nativeBuildInputs = [ flit-core ];
pythonRelaxDeps = [ "defusedxml" ];
propagatedBuildInputs = [
filetype
defusedxml
];
passthru.optional-dependencies = {
heif = [ pillow-heif ];
};
nativeCheckInputs = [
numpy
opencv4
pytestCheckHook
pillow
wand
] ++ passthru.optional-dependencies.heif;
meta = with lib; {
description = "Python image library that sits on top of Pillow, Wand and OpenCV";
homepage = "https://github.com/torchbox/Willow/";
license = licenses.bsd2;
maintainers = with maintainers; [ desiderius ];
};
}