uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
87
pkgs/development/python-modules/trytond/default.nix
Normal file
87
pkgs/development/python-modules/trytond/default.nix
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, defusedxml
|
||||
, lxml
|
||||
, relatorio
|
||||
, genshi
|
||||
, python-dateutil
|
||||
, polib
|
||||
, python-sql
|
||||
, werkzeug
|
||||
, wrapt
|
||||
, passlib
|
||||
, pydot
|
||||
, python-Levenshtein
|
||||
, html2text
|
||||
, weasyprint
|
||||
, gevent
|
||||
, pillow
|
||||
, withPostgresql ? true, psycopg2
|
||||
, python
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "trytond";
|
||||
version = "6.4.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-8Ah1zNQzcVgYSqCIGRN+6o8qzVPd3WzygGtVnyojHuk=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
defusedxml
|
||||
lxml
|
||||
relatorio
|
||||
genshi
|
||||
python-dateutil
|
||||
polib
|
||||
python-sql
|
||||
werkzeug
|
||||
wrapt
|
||||
passlib
|
||||
|
||||
# extra dependencies
|
||||
pydot
|
||||
python-Levenshtein
|
||||
html2text
|
||||
weasyprint
|
||||
gevent
|
||||
pillow
|
||||
] ++ relatorio.optional-dependencies.fodt
|
||||
++ passlib.optional-dependencies.bcrypt
|
||||
++ passlib.optional-dependencies.argon2
|
||||
++ lib.optional withPostgresql psycopg2;
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
|
||||
export HOME=$(mktemp -d)
|
||||
export TRYTOND_DATABASE_URI="sqlite://"
|
||||
export DB_NAME=":memory:";
|
||||
${python.interpreter} -m unittest discover -s trytond.tests
|
||||
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
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/";
|
||||
changelog = "https://hg.tryton.org/trytond/file/${version}/CHANGELOG";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ udono johbo ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue