2020-06-11 18:49:48 +01:00
|
|
|
{ lib
|
|
|
|
, python3
|
|
|
|
, fetchFromGitHub
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, gettext
|
|
|
|
, appstream
|
|
|
|
, appstream-glib
|
|
|
|
, wrapGAppsHook
|
2021-01-16 09:47:15 +00:00
|
|
|
, desktop-file-utils
|
2020-06-11 18:49:48 +01:00
|
|
|
, gobject-introspection
|
|
|
|
, gtksourceview4
|
|
|
|
, gspell
|
|
|
|
, poppler_gi
|
|
|
|
, webkitgtk
|
|
|
|
, librsvg
|
|
|
|
}:
|
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
|
|
pname = "setzer";
|
2022-02-21 21:12:24 +00:00
|
|
|
version = "0.4.4";
|
2020-06-11 18:49:48 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cvfosammmm";
|
|
|
|
repo = "Setzer";
|
|
|
|
rev = "v${version}";
|
2022-02-21 21:12:24 +00:00
|
|
|
hash = "sha256-y39u1eSX7vzcIJzoykU7Y7FTmeZnBW/IlvJLzKHfz8Y=";
|
2020-06-11 18:49:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
format = "other";
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
gettext
|
|
|
|
appstream # for appstreamcli
|
|
|
|
appstream-glib
|
|
|
|
wrapGAppsHook
|
2021-01-16 09:47:15 +00:00
|
|
|
desktop-file-utils
|
2020-06-11 18:49:48 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gobject-introspection
|
|
|
|
gtksourceview4
|
|
|
|
gspell
|
|
|
|
poppler_gi
|
|
|
|
webkitgtk
|
|
|
|
librsvg
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
|
|
pygobject3
|
|
|
|
pyxdg
|
2021-01-18 08:40:24 +00:00
|
|
|
pdfminer
|
|
|
|
pycairo
|
2021-11-23 00:42:10 +00:00
|
|
|
pexpect
|
2020-06-11 18:49:48 +01:00
|
|
|
];
|
|
|
|
|
2021-01-23 15:36:35 +00:00
|
|
|
checkPhase = ''
|
|
|
|
meson test --print-errorlogs
|
|
|
|
'';
|
|
|
|
|
2020-06-11 18:49:48 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "LaTeX editor written in Python with Gtk";
|
|
|
|
homepage = src.meta.homepage;
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
|
|
};
|
|
|
|
}
|