nixpkgs-suyu/pkgs/development/python-modules/trytond/default.nix

81 lines
1.5 KiB
Nix
Raw Normal View History

2020-06-25 12:48:33 +02:00
{ stdenv
2020-06-26 12:24:42 +02:00
, buildPythonApplication
, fetchPypi
, pythonOlder
2020-06-26 12:24:42 +02:00
, mock
, lxml
, relatorio
, genshi
, dateutil
, polib
, python-sql
, werkzeug
, wrapt
, passlib
, bcrypt
, pydot
, python-Levenshtein
, simplejson
, html2text
, psycopg2
2020-06-25 12:48:33 +02:00
, withPostgresql ? true
}:
2017-02-18 16:27:25 +01:00
with stdenv.lib;
2020-06-26 12:24:42 +02:00
buildPythonApplication rec {
pname = "trytond";
2020-08-16 19:31:18 +02:00
version = "5.6.5";
disabled = pythonOlder "3.5";
2020-06-26 12:24:42 +02:00
src = fetchPypi {
inherit pname version;
2020-08-16 19:31:18 +02:00
sha256 = "a373d73b141d71f8e30d728dd8380955bc0f33daaa097201fa9a952e3663e6d8";
2017-02-18 16:27:25 +01:00
};
# Tells the tests which database to use
DB_NAME = ":memory:";
2020-06-26 12:24:42 +02:00
buildInputs = [
2017-02-18 16:27:25 +01:00
mock
];
2020-06-26 12:24:42 +02:00
propagatedBuildInputs = [
2017-02-18 16:27:25 +01:00
lxml
2020-06-25 12:48:33 +02:00
relatorio
genshi
dateutil
2017-02-18 16:27:25 +01:00
polib
python-sql
werkzeug
wrapt
2020-06-25 12:48:33 +02:00
passlib
2017-02-18 16:27:25 +01:00
# extra dependencies
bcrypt
pydot
python-Levenshtein
simplejson
html2text
2020-06-25 12:48:33 +02:00
] ++ stdenv.lib.optional withPostgresql psycopg2;
# If unset, trytond will try to mkdir /homeless-shelter
preCheck = ''
export HOME=$(mktemp -d)
'';
2017-02-18 16:27:25 +01:00
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/";
2017-02-18 16:27:25 +01:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ udono johbo ];
2017-02-18 16:27:25 +01:00
};
}