nixpkgs/pkgs/by-name/tr/tryton/package.nix

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

87 lines
1.6 KiB
Nix
Raw Normal View History

{ lib
, python3Packages
, fetchPypi
, pkg-config
, librsvg
, gobject-introspection
, atk
, gtk3
, gtkspell3
, adwaita-icon-theme
, glib
, goocanvas2
, gdk-pixbuf
, pango
, fontconfig
, freetype
, wrapGAppsHook3
}:
2017-01-14 23:39:40 +00:00
python3Packages.buildPythonApplication rec {
pname = "tryton";
2024-11-14 14:01:41 +00:00
version = "7.4.0";
2024-09-14 01:31:43 +00:00
pyproject = true;
src = fetchPypi {
inherit pname version;
2024-11-14 14:01:41 +00:00
hash = "sha256-FEPgJakSEqX4aUl9yHtRSTDPsFcD/mBNYoZIGDXXRIQ=";
2017-01-14 23:39:40 +00:00
};
2024-09-14 01:31:43 +00:00
build-system = [ python3Packages.setuptools ];
nativeBuildInputs = [
pkg-config
gobject-introspection
wrapGAppsHook3
];
2024-09-14 01:31:43 +00:00
dependencies = with python3Packages; [
python-dateutil
pygobject3
goocalendar
pycairo
];
buildInputs = [
atk
gdk-pixbuf
glib
adwaita-icon-theme
goocanvas2
fontconfig
freetype
gtk3
gtkspell3
librsvg
pango
2017-01-14 23:39:40 +00:00
];
2024-09-14 01:38:08 +00:00
dontWrapGApps = true;
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
strictDeps = false;
2024-09-14 01:31:43 +00:00
pythonImportsCheck = [ "tryton" ];
doCheck = false;
2024-08-13 20:03:55 +00:00
meta = with lib; {
2017-01-14 23:39:40 +00:00
description = "Client of the Tryton application platform";
mainProgram = "tryton";
2017-01-14 23:39:40 +00:00
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-14 23:39:40 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ johbo udono ];
2017-01-14 23:39:40 +00:00
};
}