Merge pull request #21899 from johbo/add-tryton-client

tryton: init 4.2.1
This commit is contained in:
Jörg Thalheim 2017-01-15 08:50:34 +01:00 committed by GitHub
commit e4c88f5c80
3 changed files with 38 additions and 0 deletions

View file

@ -221,6 +221,7 @@
joamaki = "Jussi Maki <joamaki@gmail.com>";
joelmo = "Joel Moberg <joel.moberg@gmail.com>";
joelteon = "Joel Taylor <me@joelt.io>";
johbo = "Johannes Bornhold <johannes@bornhold.name>";
joko = "Ioannis Koutras <ioannis.koutras@gmail.com>";
jonafato = "Jon Banafato <jon@jonafato.com>";
jpbernardy = "Jean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>";

View file

@ -0,0 +1,35 @@
{ stdenv, fetchurl, python2Packages, librsvg }:
with stdenv.lib;
python2Packages.buildPythonApplication rec {
name = "tryton-${version}";
version = "4.2.1";
src = fetchurl {
url = "mirror://pypi/t/tryton/${name}.tar.gz";
sha256 = "1ry3kvbk769m8rwqa90pplfvmmgsv4jj9w1aqhv892smia8f0ybm";
};
propagatedBuildInputs = with python2Packages; [
chardet
dateutil
pygtk
librsvg
];
makeWrapperArgs = [
''--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"''
];
meta = {
description = "The client of the Tryton application platform";
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 = [ maintainers.johbo ];
};
}

View file

@ -4069,6 +4069,8 @@ in
trousers = callPackage ../tools/security/trousers { };
tryton = callPackage ../applications/office/tryton { };
omapd = callPackage ../tools/security/omapd { };
ttf2pt1 = callPackage ../tools/misc/ttf2pt1 { };