[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/09: gnu: Add python-trytond-currency.
From: |
guix-commits |
Subject: |
02/09: gnu: Add python-trytond-currency. |
Date: |
Tue, 25 Aug 2020 10:41:56 -0400 (EDT) |
mothacehe pushed a commit to branch master
in repository guix.
commit 23dc957cb3200cc9e9823cd09412b5c14cd3d71f
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Mon Aug 24 19:20:12 2020 -0300
gnu: Add python-trytond-currency.
* gnu/packages/tryton.scm (python-trytond-currency): New variable.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
gnu/packages/tryton.scm | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm
index 4e44357..cd3da1e 100644
--- a/gnu/packages/tryton.scm
+++ b/gnu/packages/tryton.scm
@@ -215,6 +215,54 @@ and security.")
addresses.")
(license license:gpl3+)))
+(define-public python-trytond-currency
+ (package
+ (name "python-trytond-currency")
+ (version "5.6.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "trytond_currency" version))
+ (sha256
+ (base32 "1x6ynxpbafjpky5vfir9favijj6v5gl62szshladlx14ng6qgm68"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (let ((runtest
+ (string-append
+ (assoc-ref %build-inputs "python-trytond")
+ "/lib/python"
+ ,(version-major+minor (package-version python))
+ "/site-packages/trytond/tests/run-tests.py")))
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (add-installed-pythonpath inputs outputs)
+ (invoke "python" runtest "-m" "currency")))))))
+ (native-inputs
+ `(("python" ,python-minimal-wrapper)
+ ("python-dateutil" ,python-dateutil)
+ ("python-genshi" ,python-genshi)
+ ("python-forex-python" ,python-forex-python)
+ ("python-lxml" ,python-lxml)
+ ("python-magic" ,python-magic)
+ ("python-passlib" ,python-passlib)
+ ("python-polib" ,python-polib)
+ ("python-proteus" ,python-proteus)
+ ("python-pycountry" ,python-pycountry)
+ ("python-relatorio" ,python-relatorio)
+ ("python-werkzeug" ,python-werkzeug)
+ ("python-wrapt" ,python-wrapt)))
+ (propagated-inputs
+ `(("python-sql" ,python-sql)
+ ("python-trytond" ,python-trytond)))
+ (home-page "https://www.tryton.org/";)
+ (synopsis "Tryton module with currencies")
+ (description
+ "This package provides a Tryton module that defines the concepts of
+currency and rate.")
+ (license license:gpl3+)))
+
(define-public python-proteus
(package
(name "python-proteus")
- branch master updated (2612ec8 -> 7f765a9), guix-commits, 2020/08/25
- 02/09: gnu: Add python-trytond-currency.,
guix-commits <=
- 03/09: gnu: Add python-trytond-company., guix-commits, 2020/08/25
- 05/09: gnu: Add python-simpleeval., guix-commits, 2020/08/25
- 01/09: gnu: Add python-forex-python., guix-commits, 2020/08/25
- 04/09: gnu: Add python-trytond-product., guix-commits, 2020/08/25
- 07/09: gnu: Add python-trytond-stock., guix-commits, 2020/08/25
- 08/09: gnu: Add python-trytond-stock-lot., guix-commits, 2020/08/25
- 06/09: gnu: Add python-trytond-account., guix-commits, 2020/08/25
- 09/09: gnu: cuirass: Update to 0.0.1-43.f2984c7., guix-commits, 2020/08/25