bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
61 lines
1 KiB
Nix
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 = "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 ];
|
|
};
|
|
}
|