2018-10-26 17:18:06 +02:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pymaging
|
|
|
|
}:
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
buildPythonPackage {
|
2018-11-05 00:32:52 +01:00
|
|
|
pname = "pymaging-png";
|
2018-10-26 17:18:06 +02:00
|
|
|
version = "unstable-2016-11-16";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ojii";
|
|
|
|
repo = "pymaging-png";
|
|
|
|
rev = "83d85c44e4b2342818e6c068065e031a9f81bb9f";
|
|
|
|
sha256 = "1mknxvsq0lr1ffm8amzm3w2prn043c6ghqgpxlkw83r988p5fn57";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pymaging ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Pure Python imaging library with Python 2.6, 2.7, 3.1+ support";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/ojii/pymaging-png/";
|
2018-10-26 17:18:06 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ mic92 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|