Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pillowfight / default.nix
blobc022fdb988d53770907110142b9ddbb66eacbed5
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pillow
5 }:
7 buildPythonPackage rec {
8   pname = "pillowfight";
9   version = "0.3";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "913869b0563c5982bcf08cb1ea56fb0f87e3573d738e3e3692301bf45dba6252";
14   };
16   propagatedBuildInputs = [ pillow ];
18   meta = with lib; {
19     description = "Eases the transition from PIL to Pillow for Python packages";
20     homepage = "https://github.com/beanbaginc/pillowfight";
21     license = licenses.mit;
22   };