depot/third_party/nixpkgs/pkgs/development/python-modules/willow/default.nix
Default email d5f4a57cbf Project import generated by Copybara.
GitOrigin-RevId: ce5e4a6ef2e59d89a971bc434ca8ca222b9c7f5e
2023-08-10 09:59:29 +02:00

40 lines
771 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
# dependencies
, filetype
, defusedxml,
}:
buildPythonPackage rec {
pname = "willow";
version = "1.5.1";
format = "setuptools";
disabled = pythonOlder "2.7";
src = fetchPypi {
pname = "Willow";
inherit version;
hash = "sha256-t6SQkRATP9seIodZLgZzzCVeAobhzVNCfuaN8ckiDEw=";
};
propagatedBuildInputs = [
filetype
defusedxml
];
# Test data is not included
# https://github.com/torchbox/Willow/issues/34
doCheck = false;
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 ];
};
}