Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchFromGitHub 4, pymaging 5}: 6 7buildPythonPackage rec { 8 pname = "pymaging-png"; 9 version = "unstable-2016-11-16"; 10 11 src = fetchFromGitHub { 12 owner = "ojii"; 13 repo = "pymaging-png"; 14 rev = "83d85c44e4b2342818e6c068065e031a9f81bb9f"; 15 sha256 = "1mknxvsq0lr1ffm8amzm3w2prn043c6ghqgpxlkw83r988p5fn57"; 16 }; 17 18 propagatedBuildInputs = [ pymaging ]; 19 20 meta = with stdenv.lib; { 21 description = "Pure Python imaging library with Python 2.6, 2.7, 3.1+ support"; 22 homepage = https://github.com/ojii/pymaging-png/; 23 license = licenses.mit; 24 maintainers = with maintainers; [ mic92 ]; 25 }; 26 27}