2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-16 18:05:02 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pillow
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pillowfight";
|
2021-03-24 09:28:20 +00:00
|
|
|
version = "0.4";
|
2018-10-16 18:05:02 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-24 09:28:20 +00:00
|
|
|
sha256 = "4923f4d1e78be15f19f03a608fb34ba9cb71bf5205de3c9fe7461c49078167a7";
|
2018-10-16 18:05:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pillow ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-01 03:11:56 +00:00
|
|
|
description = "Eases the transition from PIL to Pillow for Python packages";
|
2018-10-16 18:05:02 +00:00
|
|
|
homepage = "https://github.com/beanbaginc/pillowfight";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|