summary refs log tree commit diff
path: root/pkgs/development/python-modules/pymaging_png/default.nix
blob: 6d12ddd40062c4f97e894b2fd92f433d532d01c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib
, buildPythonPackage
, fetchFromGitHub
, pymaging
}:

buildPythonPackage {
  pname = "pymaging-png";
  version = "unstable-2016-11-16";

  src = fetchFromGitHub {
    owner = "ojii";
    repo = "pymaging-png";
    rev = "83d85c44e4b2342818e6c068065e031a9f81bb9f";
    sha256 = "1mknxvsq0lr1ffm8amzm3w2prn043c6ghqgpxlkw83r988p5fn57";
  };

  propagatedBuildInputs = [ pymaging ];

  meta = with lib; {
    description = "Pure Python imaging library with Python 2.6, 2.7, 3.1+ support";
    homepage    = "https://github.com/ojii/pymaging-png/";
    license     = licenses.mit;
    maintainers = with maintainers; [ mic92 ];
  };

}