17 buildPythonPackage rec {
22 disabled = pythonOlder "3.9";
24 src = fetchFromGitHub {
27 rev = "refs/tags/v${version}";
28 hash = "sha256-H/UXE6gA6x849aqBcUgl3JYZ87OMNpuFyWGSsgqW1Rk=";
31 build-system = [ flit-core ];
33 pythonRelaxDeps = [ "defusedxml" ];
40 optional-dependencies = {
41 heif = [ pillow-heif ];
50 ] ++ optional-dependencies.heif;
53 description = "Python image library that sits on top of Pillow, Wand and OpenCV";
54 homepage = "https://github.com/torchbox/Willow/";
55 changelog = "https://github.com/wagtail/Willow/releases/tag/v${version}";
56 license = licenses.bsd2;
57 maintainers = with maintainers; [ desiderius ];