mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add python-trytond-country.
* gnu/packages/tryton.scm (python-trytond-country): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
f38d2b422a
commit
0a92ebdeeb
1 changed files with 34 additions and 0 deletions
|
@ -93,6 +93,40 @@ (define-public tryton
|
|||
(description "This package is the client component of Tryton.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public python-trytond-country
|
||||
(package
|
||||
(name "python-trytond-country")
|
||||
(version "4.6.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "trytond_country" version))
|
||||
(sha256
|
||||
(base32
|
||||
"11c9mw2scbjn7c6yhlwh5ml266f0s31lh4jwj6gh7vl1shs3isr3"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'check 'preparations
|
||||
(lambda _
|
||||
(setenv "DB_NAME" ":memory:")
|
||||
#t)))))
|
||||
(propagated-inputs
|
||||
`(("python-trytond" ,python-trytond)
|
||||
("python-wrapt" ,python-wrapt)
|
||||
("python-werkzeug" ,python-werkzeug)
|
||||
("python-sql" ,python-sql)
|
||||
("python-polib" ,python-polib)
|
||||
("python-dateutil" ,python-dateutil)
|
||||
("python-genshi" ,python-genshi)
|
||||
("python-relatorio" ,python-relatorio)
|
||||
("python-magic" ,python-magic)))
|
||||
(home-page "http://www.tryton.org/")
|
||||
(synopsis "Tryton module with countries")
|
||||
(description "This package provides a Tryton module with countries.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public python-proteus
|
||||
(package
|
||||
(name "python-proteus")
|
||||
|
|
Loading…
Reference in a new issue