2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-27 14:41:37 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pillow
|
|
|
|
, nose_progressive
|
|
|
|
, nose
|
|
|
|
, mock
|
|
|
|
, blessings
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pilkit";
|
2018-11-04 10:35:09 +00:00
|
|
|
version = "2.0";
|
2018-10-27 14:41:37 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-04 10:35:09 +00:00
|
|
|
sha256 = "ddb30c2f0198a147e56b151476c3bb9fe045fbfd5b0a0fa2a3148dba62d1559f";
|
2018-10-27 14:41:37 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace setup.py --replace 'nose==1.2.1' 'nose'
|
|
|
|
'';
|
|
|
|
|
|
|
|
# tests fail, see https://github.com/matthewwithanm/pilkit/issues/9
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
buildInputs = [ pillow nose_progressive nose mock blessings ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/matthewwithanm/pilkit/";
|
2018-10-27 14:41:37 +01:00
|
|
|
description = "A collection of utilities and processors for the Python Imaging Libary";
|
|
|
|
license = licenses.bsd0;
|
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|