1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4}:
5
6buildPythonPackage {
7 pname = "pymaging";
8 version = "unstable-2016-11-16";
9
10 src = fetchFromGitHub {
11 owner = "ojii";
12 repo = "pymaging";
13 rev = "596a08fce5664e58d6e8c96847393fbe987783f2";
14 sha256 = "18g3n7kfrark30l4vzykh0gdbnfv5wb1zvvjbs17sj6yampypn38";
15 };
16
17 meta = with lib; {
18 description = "Pure Python imaging library with Python 2.6, 2.7, 3.1+ support";
19 homepage = "http://pymaging.rtfd.org";
20 license = licenses.mit;
21 maintainers = with maintainers; [ mic92 ];
22 };
23
24}