me
/
guix
Archived
1
0
Fork 0

gnu: Add trytond-web-user.

* gnu/packages/tryton.scm (trytond-web-user): New variable.
master
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
1 changed files with 22 additions and 0 deletions

View File

@ -4490,3 +4490,25 @@ provides support of Stripe payment for Vue Storefront integration.")
shortened. It also counts the number of times the URL is accessed and shortened. It also counts the number of times the URL is accessed and
optionally triggers action.") optionally triggers action.")
(license license:gpl3+))) (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+)))