linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / willow / default.nix
blob3dafd4df44b361207835aac19c85c978699578fa
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , six
6 , pillow
7 }:
9 buildPythonPackage rec {
10   pname = "willow";
11   version = "1.4";
12   disabled = pythonOlder "2.7";
14   src = fetchPypi {
15     pname = "Willow";
16     inherit version;
17     sha256 = "0b3lh7z98nlh4yn0cmvk7bimhfk5w4qvbmjr6jn880ji9h2ixq6d";
18   };
20   propagatedBuildInputs = [ six pillow ];
22   # Test data is not included
23   # https://github.com/torchbox/Willow/issues/34
24   doCheck = false;
26   meta = with lib; {
27     description = "A Python image library that sits on top of Pillow, Wand and OpenCV";
28     homepage = "https://github.com/torchbox/Willow/";
29     license = licenses.bsd2;
30     maintainers = with maintainers; [ desiderius ];
31   };