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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
{ lib
, python3Packages
, fetchPypi
, pkg-config
, librsvg
, gobject-introspection
, atk
, gtk3
, gtkspell3
, gnome
, glib
, goocanvas2
, gdk-pixbuf
, pango
, fontconfig
, freetype
, wrapGAppsHook3
}:
with lib;
python3Packages.buildPythonApplication rec {
pname = "tryton";
version = "7.0.8";
disabled = !python3Packages.isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-e3WNDB6P7kapAfzlvbJ1/6LcyH7Fl6GKCK/hri460pQ=";
};
nativeBuildInputs = [
pkg-config
gobject-introspection
wrapGAppsHook3
];
propagatedBuildInputs = with python3Packages; [
python-dateutil
pygobject3
goocalendar
pycairo
];
buildInputs = [
atk
gdk-pixbuf
glib
gnome.adwaita-icon-theme
goocanvas2
fontconfig
freetype
gtk3
gtkspell3
librsvg
pango
];
strictDeps = false;
doCheck = false;
meta = {
description = "The client of the Tryton application platform";
mainProgram = "tryton";
longDescription = ''
The client for Tryton, a three-tier high-level general purpose
application platform under the license GPL-3 written in Python and using
PostgreSQL as database engine.
It is the core base of a complete business solution providing
modularity, scalability and security.
'';
homepage = "http://www.tryton.org/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ johbo udono ];
};
}
|