summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/office/paperwork/openpaperwork-gtk.nix
blob: 160a8dc64919fc6e33027e46e7027cfd6e59a071 (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
60
61
62
63
64
{
  buildPythonPackage,
  lib,
  callPackage,

  isPy3k,
  isPyPy,

  openpaperwork-core,
  pillow,
  pygobject3,
  distro,
  setuptools-scm,

  pkgs,
}:

buildPythonPackage (finalAttrs: {
  pname = "openpaperwork-gtk";
  inherit (callPackage ./src.nix { }) version src;
  pyproject = true;

  sourceRoot = "${finalAttrs.src.name}/openpaperwork-gtk";

  # Python 2.x is not supported.
  disabled = !isPy3k && !isPyPy;

  patchPhase = ''
    chmod a+w -R ..
    patchShebangs ../tools
  '';

  nativeBuildInputs = [
    pkgs.gettext
    pkgs.which
    setuptools-scm
  ];

  preBuild = ''
    make l10n_compile
  '';

  propagatedBuildInputs = [
    pillow
    pygobject3
    pkgs.poppler_gi
    pkgs.gtk3
    pkgs.libhandy
    distro
    pkgs.pango
    openpaperwork-core
  ];

  meta = {
    description = "Reusable GTK components of Paperwork";
    homepage = "https://openpaper.work/";
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [
      aszlig
      symphorien
    ];
    platforms = lib.platforms.linux;
  };
})