nixpkgs/pkgs/development/python-modules/trytond/default.nix
2020-12-03 20:28:55 +00:00

81 lines
1.5 KiB
Nix

{ stdenv
, buildPythonApplication
, fetchPypi
, pythonOlder
, mock
, lxml
, relatorio
, genshi
, dateutil
, polib
, python-sql
, werkzeug
, wrapt
, passlib
, bcrypt
, pydot
, python-Levenshtein
, simplejson
, html2text
, psycopg2
, withPostgresql ? true
}:
with stdenv.lib;
buildPythonApplication rec {
pname = "trytond";
version = "5.8.1";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "9c1afca73b13ede07680015d69f611c7dec33b8c22565de70f0cbbf0464b8db7";
};
# Tells the tests which database to use
DB_NAME = ":memory:";
buildInputs = [
mock
];
propagatedBuildInputs = [
lxml
relatorio
genshi
dateutil
polib
python-sql
werkzeug
wrapt
passlib
# extra dependencies
bcrypt
pydot
python-Levenshtein
simplejson
html2text
] ++ stdenv.lib.optional withPostgresql psycopg2;
# If unset, trytond will try to mkdir /homeless-shelter
preCheck = ''
export HOME=$(mktemp -d)
'';
meta = {
description = "The server of the Tryton application platform";
longDescription = ''
The server 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; [ udono johbo ];
};
}