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

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

93 lines
1.8 KiB
Nix
Raw Normal View History

{ lib
2020-06-26 11:24:42 +01:00
, buildPythonApplication
, fetchpatch
2020-06-26 11:24:42 +01:00
, fetchPypi
, pythonOlder
2020-06-26 11:24:42 +01:00
, mock
, lxml
, relatorio
, genshi
, python-dateutil
2020-06-26 11:24:42 +01:00
, polib
, python-sql
, werkzeug
, wrapt
, passlib
, pillow
2020-06-26 11:24:42 +01:00
, bcrypt
, pydot
, python-Levenshtein
, simplejson
, html2text
, psycopg2
2020-06-25 11:48:33 +01:00
, withPostgresql ? true
}:
2017-02-18 15:27:25 +00:00
2020-06-26 11:24:42 +01:00
buildPythonApplication rec {
pname = "trytond";
version = "6.2.6";
format = "setuptools";
disabled = pythonOlder "3.6";
2020-06-26 11:24:42 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Sof6A9lxU70YnCbboJr56CAdTL0cRbaRNxdvG5Tnqnw=";
2017-02-18 15:27:25 +00:00
};
patches = [
(fetchpatch {
# werkzeug 2.1 compatibility for the tests
url = "https://github.com/tryton/trytond/commit/86a50ca06cf0d79404dbd731141ed29f8e9fcb9d.patch";
hash = "sha256-xY5Sdhkd0lEgscV7NHwX2YWxobWqQFElY5BJvDT+we8=";
})
];
2017-02-18 15:27:25 +00:00
# Tells the tests which database to use
DB_NAME = ":memory:";
2020-06-26 11:24:42 +01:00
buildInputs = [
2017-02-18 15:27:25 +00:00
mock
];
2020-06-26 11:24:42 +01:00
propagatedBuildInputs = [
2017-02-18 15:27:25 +00:00
lxml
2020-06-25 11:48:33 +01:00
relatorio
genshi
python-dateutil
2017-02-18 15:27:25 +00:00
polib
python-sql
werkzeug
wrapt
pillow
2020-06-25 11:48:33 +01:00
passlib
2017-02-18 15:27:25 +00:00
# extra dependencies
bcrypt
pydot
python-Levenshtein
simplejson
html2text
] ++ lib.optional withPostgresql psycopg2;
2020-06-25 11:48:33 +01:00
# If unset, trytond will try to mkdir /homeless-shelter
preCheck = ''
export HOME=$(mktemp -d)
'';
meta = with lib; {
2017-02-18 15:27:25 +00:00
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 15:27:25 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ udono johbo ];
2017-02-18 15:27:25 +00:00
};
}