nixpkgs/pkgs/applications/office/paperwork/openpaperwork-gtk.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
1 KiB
Nix
Raw Normal View History

2020-10-31 13:00:00 +01:00
{ buildPythonPackage
, lib
, fetchFromGitLab
, isPy3k
, isPyPy
, openpaperwork-core
, pillow
, pygobject3
, distro
, setuptools-scm
2020-10-31 13:00:00 +01:00
, pkgs
}:
buildPythonPackage rec {
pname = "openpaperwork-gtk";
inherit (import ./src.nix { inherit fetchFromGitLab; }) version src;
format = "pyproject";
2020-10-31 13:00:00 +01:00
sourceRoot = "${src.name}/openpaperwork-gtk";
2020-10-31 13:00:00 +01:00
# Python 2.x is not supported.
disabled = !isPy3k && !isPyPy;
patchPhase = ''
chmod a+w -R ..
patchShebangs ../tools
'';
nativeBuildInputs = [
pkgs.gettext
pkgs.which
setuptools-scm
];
2020-10-31 13:00:00 +01:00
preBuild = ''
make l10n_compile
'';
propagatedBuildInputs = [
pillow
pygobject3
pkgs.poppler_gi
pkgs.gtk3
2021-01-06 13:00:00 +01:00
pkgs.libhandy
2020-10-31 13:00:00 +01:00
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;
2020-10-31 13:00:00 +01:00
};
}