diff options
author | Adriano Peluso <catonano@gmail.com> | 2018-01-22 18:40:52 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2018-01-22 19:52:13 +0100 |
commit | 7e99221db9c984751556f4062bf084fdf288207e (patch) | |
tree | ec443e86fe515426f970227e86e0c19dde5739ae /gnu/packages/tryton.scm | |
parent | edb09c53c448a41818927c4e88eca6a72833a08b (diff) | |
download | patches-7e99221db9c984751556f4062bf084fdf288207e.tar patches-7e99221db9c984751556f4062bf084fdf288207e.tar.gz |
gnu: trytond: Updated to 4.6.2.
* gnu/packages/tryton.scm (trytond): Updated to 4.6.2.
[inputs]: Add python-magic.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
Diffstat (limited to 'gnu/packages/tryton.scm')
-rw-r--r-- | gnu/packages/tryton.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index aa7af669c8..015437dc0a 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -32,21 +32,20 @@ (define-public trytond (package (name "trytond") - (version "4.4.1") + (version "4.6.2") (source (origin (method url-fetch) - (uri (string-append - "https://downloads.tryton.org/4.4/trytond-" - version ".tar.gz")) + (uri (pypi-uri "trytond" version)) (sha256 (base32 - "15gm34qwj5fpnkqvrxzndl8653zbczhsa76dm1gi4cqj1r29bbpr")))) + "0asc3pd37h8ky8j66iqxr0fv0k6mpjcwxwm0xgm5hrdi32l5cdda")))) (build-system python-build-system) (inputs `(("python-dateutil" ,python-dateutil) ("python-genshi" ,python-genshi) ("python-polib" ,python-polib) + ("python-magic" ,python-magic) ;; there's no python-mysql in Guix right now ;; so python-psycopg2 (postgresql) only for now ("python-psycopg2" ,python-psycopg2) |