blob: 76f6238349a588117a26b2c6251fd25d809fe41f (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
{ lib
, buildPythonPackage
, fetchFromGitHub
, mock
, pillow
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "pilkit";
version = "3.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "matthewwithanm";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-NmD9PFCkz3lz4AnGoQUpkt35q0zvDVm+kx7lVDFBcHk=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
pillow
];
nativeCheckInputs = [
mock
pytestCheckHook
];
postPatch = ''
substituteInPlace tox.ini \
--replace " --cov --cov-report term-missing:skip-covered" ""
substituteInPlace pilkit/processors/resize.py \
--replace "Image.ANTIALIAS" "Image.Resampling.LANCZOS"
'';
pythonImportsCheck = [
"pilkit"
];
meta = with lib; {
description = "A collection of utilities and processors for the Python Imaging Library";
homepage = "https://github.com/matthewwithanm/pilkit/";
license = licenses.bsd3;
maintainers = with maintainers; [ domenkozar ];
};
}
|