96 lines
1.6 KiB
Nix
96 lines
1.6 KiB
Nix
|
{ lib
|
||
|
, fetchzip
|
||
|
, python310
|
||
|
, rtlcss
|
||
|
, wkhtmltopdf
|
||
|
, nixosTests
|
||
|
}:
|
||
|
|
||
|
let
|
||
|
odoo_version = "16.0";
|
||
|
odoo_release = "20241010";
|
||
|
python = python310.override {
|
||
|
self = python;
|
||
|
};
|
||
|
in python.pkgs.buildPythonApplication rec {
|
||
|
pname = "odoo";
|
||
|
version = "${odoo_version}.${odoo_release}";
|
||
|
|
||
|
format = "setuptools";
|
||
|
|
||
|
# latest release is at https://github.com/odoo/docker/blob/master/16.0/Dockerfile
|
||
|
src = fetchzip {
|
||
|
url = "https://nightly.odoo.com/${odoo_version}/nightly/src/odoo_${version}.zip";
|
||
|
name = "odoo-${version}";
|
||
|
hash = "sha256-ICe5UOy+Ga81fE66SnIhRz3+JEEbGfoz7ag53mkG4UM="; # odoo
|
||
|
};
|
||
|
|
||
|
makeWrapperArgs = [
|
||
|
"--prefix" "PATH" ":" "${lib.makeBinPath [ wkhtmltopdf rtlcss ]}"
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = with python.pkgs; [
|
||
|
babel
|
||
|
chardet
|
||
|
cryptography
|
||
|
decorator
|
||
|
docutils
|
||
|
ebaysdk
|
||
|
freezegun
|
||
|
gevent
|
||
|
greenlet
|
||
|
idna
|
||
|
jinja2
|
||
|
libsass
|
||
|
lxml
|
||
|
lxml-html-clean
|
||
|
markupsafe
|
||
|
num2words
|
||
|
ofxparse
|
||
|
passlib
|
||
|
pillow
|
||
|
polib
|
||
|
psutil
|
||
|
psycopg2
|
||
|
pydot
|
||
|
pyopenssl
|
||
|
pypdf2
|
||
|
pyserial
|
||
|
python-dateutil
|
||
|
python-ldap
|
||
|
python-stdnum
|
||
|
pytz
|
||
|
pyusb
|
||
|
qrcode
|
||
|
reportlab
|
||
|
requests
|
||
|
urllib3
|
||
|
vobject
|
||
|
werkzeug
|
||
|
xlrd
|
||
|
xlsxwriter
|
||
|
xlwt
|
||
|
zeep
|
||
|
|
||
|
setuptools
|
||
|
mock
|
||
|
];
|
||
|
|
||
|
# takes 5+ minutes and there are not files to strip
|
||
|
dontStrip = true;
|
||
|
|
||
|
passthru = {
|
||
|
updateScript = ./update.sh;
|
||
|
tests = {
|
||
|
inherit (nixosTests) odoo;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Open Source ERP and CRM";
|
||
|
homepage = "https://www.odoo.com/";
|
||
|
license = licenses.lgpl3Only;
|
||
|
maintainers = with maintainers; [ mkg20001 ];
|
||
|
};
|
||
|
}
|