gnu: Add python-trytond-account.
* gnu/packages/tryton.scm (python-trytond-account): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>master
parent
69e983300f
commit
84cca05cd7
|
@ -361,6 +361,58 @@ company and employee and extend the user model.")
|
||||||
Template and Product.")
|
Template and Product.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public python-trytond-account
|
||||||
|
(package
|
||||||
|
(name "python-trytond-account")
|
||||||
|
(version "5.6.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "trytond_account" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "17q0cxp3vkymbv62ir4c6kg9y8lx8xvz30p0asrbsnbgwl6sjm30"))))
|
||||||
|
(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" "account")))))))
|
||||||
|
(native-inputs
|
||||||
|
`(("python" ,python-minimal-wrapper)
|
||||||
|
("python-genshi" ,python-genshi)
|
||||||
|
("python-lxml" ,python-lxml)
|
||||||
|
("python-magic" ,python-magic)
|
||||||
|
("python-passlib" ,python-passlib)
|
||||||
|
("python-polib" ,python-polib)
|
||||||
|
("python-proteus" ,python-proteus)
|
||||||
|
("python-relatorio" ,python-relatorio)
|
||||||
|
("python-werkzeug" ,python-werkzeug)
|
||||||
|
("python-wrapt" ,python-wrapt)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-dateutil" ,python-dateutil)
|
||||||
|
("python-simpleeval" ,python-simpleeval)
|
||||||
|
("python-sql" ,python-sql)
|
||||||
|
("python-trytond" ,python-trytond)
|
||||||
|
("python-trytond-company"
|
||||||
|
,python-trytond-company)
|
||||||
|
("python-trytond-currency"
|
||||||
|
,python-trytond-currency)
|
||||||
|
("python-trytond-party" ,python-trytond-party)))
|
||||||
|
(home-page "https://www.tryton.org/")
|
||||||
|
(synopsis "Tryton module for accounting")
|
||||||
|
(description
|
||||||
|
"This package provides a Tryton module that defines the fundamentals for
|
||||||
|
most of accounting needs.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public python-proteus
|
(define-public python-proteus
|
||||||
(package
|
(package
|
||||||
(name "python-proteus")
|
(name "python-proteus")
|
||||||
|
|
Reference in New Issue