depot/third_party/nixpkgs/pkgs/development/python-modules/willow/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

61 lines
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 ];
propagatedBuildInputs = [
filetype
defusedxml
];
passthru.optional-dependencies = {
heif = [ pillow-heif ];
};
nativeCheckInputs = [
numpy
opencv4
pytestCheckHook
pillow
wand
] ++ passthru.optional-dependencies.heif;
meta = with lib; {
description = "A 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 ];
};
}