summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/tilequant/default.nix
blob: 15e879c0f5f49492bb8a9923812491b2a04ab96a (plain)
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
58
59
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,

  # build-system
  setuptools,
  setuptools-dso,

  # dependencies
  click,
  ordered-set,
  pillow,
  sortedcollections,
}:

buildPythonPackage rec {
  pname = "tilequant";
  version = "1.2.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "SkyTemple";
    repo = "tilequant";
    tag = version;
    # Fetch tilequant source files
    fetchSubmodules = true;
    hash = "sha256-MgyKLwVdL2DRR8J88q7Q57rQiX4FTOlQ5rTY3UuhaJM=";
  };

  build-system = [
    setuptools
    setuptools-dso
  ];

  pythonRelaxDeps = [
    "click"
  ];
  dependencies = [
    click
    ordered-set
    pillow
    sortedcollections
    setuptools-dso
  ];

  doCheck = false; # there are no tests

  pythonImportsCheck = [ "tilequant" ];

  meta = {
    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 = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ marius851000 ];
    mainProgram = "tilequant";
  };
}