nixpkgs/pkgs/applications/office/tryton/default.nix

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

78 lines
1.4 KiB
Nix
Raw Normal View History

{ lib
, python3Packages
, pkg-config
, librsvg
, gobject-introspection
, atk
, gtk3
, gtkspell3
, gnome
, glib
, goocanvas2
, gdk-pixbuf
, pango
, fontconfig
, freetype
, wrapGAppsHook
}:
2017-01-15 00:39:40 +01:00
2021-01-15 06:42:41 +01:00
with lib;
2017-01-15 00:39:40 +01:00
python3Packages.buildPythonApplication rec {
pname = "tryton";
2020-01-30 18:29:23 +01:00
version = "5.4.2";
disabled = !python3Packages.isPy3k;
src = python3Packages.fetchPypi {
inherit pname version;
2020-01-30 18:29:23 +01:00
sha256 = "1rca19krvmycdhmi1vb4ixwq0cagmrkhbqry4f19b725nlp8cv0q";
2017-01-15 00:39:40 +01:00
};
nativeBuildInputs = [
pkg-config
gobject-introspection
wrapGAppsHook
];
propagatedBuildInputs = with python3Packages; [
python-dateutil
pygobject3
goocalendar
pycairo
];
buildInputs = [
atk
gdk-pixbuf
glib
gnome.adwaita-icon-theme
goocanvas2
fontconfig
freetype
gtk3
gtkspell3
librsvg
pango
2017-01-15 00:39:40 +01:00
];
strictDeps = false;
doCheck = false;
2017-01-15 00:39:40 +01:00
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/";
2017-01-15 00:39:40 +01:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ johbo udono ];
2017-01-15 00:39:40 +01:00
};
}