Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 24 lines 456 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, pillow 5}: 6 7buildPythonPackage rec { 8 pname = "pillowfight"; 9 version = "0.3"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "913869b0563c5982bcf08cb1ea56fb0f87e3573d738e3e3692301bf45dba6252"; 14 }; 15 16 propagatedBuildInputs = [ pillow ]; 17 18 meta = with stdenv.lib; { 19 description = "Pillow Fight"; 20 homepage = "https://github.com/beanbaginc/pillowfight"; 21 license = licenses.mit; 22 }; 23 24}