me
/
guix
Archived
1
0
Fork 0

gnu: Add trytond-company-work-time.

* gnu/packages/tryton.scm (trytond-company-work-time): New variable.
master
Hartmut Goebel 2021-08-27 15:09:18 +02:00
parent a0b153dcd1
commit a22db49e5e
No known key found for this signature in database
GPG Key ID: 634A8DFFD3F631DF
1 changed files with 27 additions and 0 deletions
gnu/packages

View File

@ -1654,6 +1654,33 @@ company and employee and extend the user model.")
(define-public python-trytond-company
(deprecated-package "python-trytond-company" trytond-company))
(define-public trytond-company-work-time
(package
(name "trytond-company-work-time")
(version "6.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "trytond_company_work_time" version))
(sha256
(base32 "0aasp12l66zcys9w3qc4ysi2krd5c9x3xxaxvr29j7zl7nz05bwx"))))
(build-system python-build-system)
(arguments (tryton-arguments "company_work_time"))
(native-inputs `(,@%standard-trytond-native-inputs))
(propagated-inputs
`(("trytond" ,trytond)
("trytond-company" ,trytond-company)))
(home-page "https://docs.tryton.org/projects/modules-company-work-time")
(synopsis "Tryton module to add work time on company")
(description "The @emph{Company Work Time} Tryton module adds work time
management.
The Company Work Time module adds 4 new fields (Hours per Work Day, Hours per
Work Week, Hours per Work Month, Hours per Work Year) on the company form that
allow to define how much hours are spent by an employee in a day, a week, a
month and a year of work.")
(license license:gpl3+)))
(define-public trytond-country
(package
(name "trytond-country")