blob: 906f644d89b11b967c47c9d0aea5aeaac0131e14 (
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
56
57
|
{ lib
, buildPythonPackage
, click
, fetchPypi
, ordered-set
, pillow
, pythonOlder
, pythonRelaxDepsHook
, setuptools
, setuptools-dso
, sortedcollections
}:
buildPythonPackage rec {
pname = "tilequant";
version = "1.1.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-uW1g3nlT6Y+1beifo/MOlGxsGL7on/jcAROxSddySHk=";
};
pythonRelaxDeps = [
"pillow"
];
build-system = [
pythonRelaxDepsHook
setuptools
];
dependencies = [
click
ordered-set
pillow
sortedcollections
setuptools-dso
];
doCheck = false; # there are no tests
pythonImportsCheck = [
"tilequant"
];
meta = with lib; {
description = "Tool for quantizing image colors using tile-based palette restrictions";
homepage = "https://github.com/SkyTemple/tilequant";
changelog = "https://github.com/SkyTemple/tilequant/releases/tag/${version}";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ marius851000 ];
mainProgram = "tilequant";
};
}
|