diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2021-08-27 15:09:32 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2021-09-21 21:00:30 +0200 |
commit | d0ea8226cc30177c2d0b2a5ff00a822319d5da69 (patch) | |
tree | 0de60ed96f152e3cae9aac0f6d6c4c6d1ae6a84a /gnu/packages | |
parent | ce943b213af76d3c9bfc45d3151c4626b1d55ad4 (diff) | |
download | guix-d0ea8226cc30177c2d0b2a5ff00a822319d5da69.tar.gz guix-d0ea8226cc30177c2d0b2a5ff00a822319d5da69.zip |
gnu: Add trytond-project-plan.
* gnu/packages/tryton.scm (trytond-project-plan): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tryton.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index f010eab0c0..d9b193f90b 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -2613,6 +2613,30 @@ methods on projects. The methods are: @end itemize") (license license:gpl3+))) +(define-public trytond-project-plan + (package + (name "trytond-project-plan") + (version "6.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "trytond_project_plan" version)) + (sha256 + (base32 "0yanvfmg4nmbc322h6w9m7asv4bm95y2wksi4rrvlbs84njgvhnq")))) + (build-system python-build-system) + (arguments (tryton-arguments "project_plan")) + (native-inputs `(,@%standard-trytond-native-inputs)) + (propagated-inputs + `(("trytond" ,trytond) + ("trytond-company" ,trytond-company) + ("trytond-project" ,trytond-project) + ("trytond-timesheet" ,trytond-timesheet))) + (home-page "https://docs.tryton.org/projects/modules-project-plan") + (synopsis "Tryton module to add planning capabilities on projects") + (description "The @emph{Project Plan} Tryton module adds planning features +on top of the Project module.") + (license license:gpl3+))) + (define-public trytond-purchase (package (name "trytond-purchase") |