gnu: Add trytond-web-user.

* gnu/packages/tryton.scm (trytond-web-user): New variable.
This commit is contained in:
Hartmut Goebel 2021-08-27 15:09:59 +02:00
parent b187cba935
commit 5966d48d1c
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -4490,3 +4490,25 @@ (define-public trytond-web-shortener
shortened. It also counts the number of times the URL is accessed and
optionally triggers action.")
(license license:gpl3+)))
(define-public trytond-web-user
(package
(name "trytond-web-user")
(version "6.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "trytond_web_user" version))
(sha256
(base32 "1k07d1kcfm2hwwqcyy8k5mjbhhgrnji0hadn487zsx1zp50r6rds"))))
(build-system python-build-system)
(arguments (tryton-arguments "web_user"))
(native-inputs `(,@%standard-trytond-native-inputs))
(propagated-inputs
`(("trytond" ,trytond)
("trytond-party" ,trytond-party)))
(home-page "https://docs.tryton.org/projects/modules-web-user")
(synopsis "Tryton module to manage Web users")
(description "The @emph{Web User} Tryton module provides facilities to
manage external user accessing from the web.")
(license license:gpl3+)))