depot/third_party/nixpkgs/pkgs/development/python-modules/willow/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

33 lines
700 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, six
, pillow
}:
buildPythonPackage rec {
pname = "willow";
version = "1.4.1";
disabled = pythonOlder "2.7";
src = fetchPypi {
pname = "Willow";
inherit version;
hash = "sha256-Dfj/UoUx4AtI1Av3Ltgb6sHcgvLULlu+1K/wIYvvjA0=";
};
propagatedBuildInputs = [ six pillow ];
# 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 ];
};
}