nixpkgs/pkgs/development/python-modules/willow/default.nix

34 lines
711 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, pythonOlder
, six
, pillow
}:
buildPythonPackage rec {
pname = "willow";
2020-07-07 00:08:35 +01:00
version = "1.4";
disabled = pythonOlder "2.7";
src = fetchPypi {
2019-03-05 11:50:23 +00:00
pname = "Willow";
inherit version;
2020-07-07 00:08:35 +01:00
sha256 = "0b3lh7z98nlh4yn0cmvk7bimhfk5w4qvbmjr6jn880ji9h2ixq6d";
};
propagatedBuildInputs = [ six pillow ];
# Test data is not included
# https://github.com/torchbox/Willow/issues/34
doCheck = false;
meta = with stdenv.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 ];
};
}