summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorUdo Spallek <udono@virtual-things.biz>2018-05-18 15:03:23 +0000
committerUdo Spallek <udono@virtual-things.biz>2018-05-18 17:17:44 +0000
commite708c8f120cbcfa7144b89bd3cb2c868cbbb0675 (patch)
tree34777ac0f24339e08251e1d551b5bc2b0b369a80 /pkgs/applications
parent2a1c4bf07a8119e0208b067be48d5772ae767abf (diff)
downloadnixlib-e708c8f120cbcfa7144b89bd3cb2c868cbbb0675.tar
nixlib-e708c8f120cbcfa7144b89bd3cb2c868cbbb0675.tar.gz
nixlib-e708c8f120cbcfa7144b89bd3cb2c868cbbb0675.tar.bz2
nixlib-e708c8f120cbcfa7144b89bd3cb2c868cbbb0675.tar.lz
nixlib-e708c8f120cbcfa7144b89bd3cb2c868cbbb0675.tar.xz
nixlib-e708c8f120cbcfa7144b89bd3cb2c868cbbb0675.tar.zst
nixlib-e708c8f120cbcfa7144b89bd3cb2c868cbbb0675.zip
trytond: 4.6 -> 4.8
Major upstream release.
Use extras-depends: cdecimal html2text ipaddress
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/office/trytond/default.nix15
1 files changed, 9 insertions, 6 deletions
diff --git a/pkgs/applications/office/trytond/default.nix b/pkgs/applications/office/trytond/default.nix
index efa7f2a410d7..31c6a7059fc0 100644
--- a/pkgs/applications/office/trytond/default.nix
+++ b/pkgs/applications/office/trytond/default.nix
@@ -4,11 +4,11 @@
 with stdenv.lib;
 
 python2Packages.buildPythonApplication rec {
-  name = "trytond-${version}";
-  version = "4.6.2";
-  src = fetchurl {
-    url = "mirror://pypi/t/trytond/${name}.tar.gz";
-    sha256 = "0asc3pd37h8ky8j66iqxr0fv0k6mpjcwxwm0xgm5hrdi32l5cdda";
+  pname = "trytond";
+  version = "4.8.0";
+  src = python2Packages.fetchPypi {
+    inherit pname version;
+    sha256 = "114c0ea15b8395117bf8c669b7da8af4961001297fbd034c780a42a40e079e3a";
   };
 
   # Tells the tests which database to use
@@ -25,12 +25,15 @@ python2Packages.buildPythonApplication rec {
     relatorio
     werkzeug
     wrapt
+    ipaddress
 
     # extra dependencies
     bcrypt
     pydot
     python-Levenshtein
     simplejson
+    cdecimal
+    html2text
   ] ++ stdenv.lib.optional withPostgresql psycopg2);
   meta = {
     description = "The server of the Tryton application platform";
@@ -44,6 +47,6 @@ python2Packages.buildPythonApplication rec {
     '';
     homepage = http://www.tryton.org/;
     license = licenses.gpl3Plus;
-    maintainers = [ maintainers.johbo ];
+    maintainers = with maintainers; [ udono johbo ];
   };
 }