nixpkgs/pkgs/development/python-modules/pillowfight/default.nix
2021-01-25 18:31:47 +01:00

25 lines
493 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pillow
}:
buildPythonPackage rec {
pname = "pillowfight";
version = "0.3";
src = fetchPypi {
inherit pname version;
sha256 = "913869b0563c5982bcf08cb1ea56fb0f87e3573d738e3e3692301bf45dba6252";
};
propagatedBuildInputs = [ pillow ];
meta = with lib; {
description = "Eases the transition from PIL to Pillow for Python packages";
homepage = "https://github.com/beanbaginc/pillowfight";
license = licenses.mit;
};
}