all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#43059] [PATCH 1/7] gnu: Add python-trytond-analytic-account.
@ 2020-08-26 13:49 Vinicius Monego
  2020-08-26 13:51 ` [bug#43059] [PATCH 2/7] gnu: Add python-trytond-account-product Vinicius Monego
  2020-08-27  8:10 ` bug#43059: [PATCH 1/7] gnu: Add python-trytond-analytic-account Mathieu Othacehe
  0 siblings, 2 replies; 8+ messages in thread
From: Vinicius Monego @ 2020-08-26 13:49 UTC (permalink / raw)
  To: 43059; +Cc: Vinicius Monego

* gnu/packages/tryton.scm (python-trytond-analytic-account): New variable.
---
 gnu/packages/tryton.scm | 52 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)

diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm
index 98b372be74..4063afc189 100644
--- a/gnu/packages/tryton.scm
+++ b/gnu/packages/tryton.scm
@@ -411,6 +411,58 @@ Template and Product.")
 most of accounting needs.")
     (license license:gpl3+)))
 
+(define-public python-trytond-analytic-account
+  (package
+    (name "python-trytond-analytic-account")
+    (version "5.6.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "trytond_analytic_account" version))
+       (sha256
+        (base32 "02hv3mmhadz248vy4azrw8rs2mwgsixd4cnzsm82z15gjmfxl34q"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (replace 'check
+           (let ((runtest
+                  (string-append
+                   (assoc-ref %build-inputs "python-trytond")
+                   "/lib/python" ,(version-major+minor (package-version python))
+                   "/site-packages/trytond/tests/run-tests.py")))
+             (lambda* (#:key inputs outputs #:allow-other-keys)
+               (add-installed-pythonpath inputs outputs)
+               (invoke "python" runtest "-m" "analytic_account")))))))
+    (native-inputs
+     `(("python" ,python-minimal-wrapper)
+       ("python-dateutil" ,python-dateutil)
+       ("python-genshi" ,python-genshi)
+       ("python-lxml" ,python-lxml)
+       ("python-magic" ,python-magic)
+       ("python-passlib" ,python-passlib)
+       ("python-polib" ,python-polib)
+       ("python-proteus" ,python-proteus)
+       ("python-relatorio" ,python-relatorio)
+       ("python-werkzeug" ,python-werkzeug)
+       ("python-wrapt" ,python-wrapt)))
+    (propagated-inputs
+     `(("python-sql" ,python-sql)
+       ("python-trytond" ,python-trytond)
+       ("python-trytond-account"
+        ,python-trytond-account)
+       ("python-trytond-company"
+        ,python-trytond-company)
+       ("python-trytond-currency"
+        ,python-trytond-currency)
+       ("python-trytond-party" ,python-trytond-party)))
+    (home-page "https://www.tryton.org/")
+    (synopsis "Tryton module for analytic accounting")
+    (description
+     "This package provides a Tryton module that adds the fundamentals
+required to analyse accounting using multiple different axes.")
+    (license license:gpl3+)))
+
 (define-public python-trytond-stock
   (package
     (name "python-trytond-stock")
-- 
2.20.1





^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2020-08-27  8:11 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-26 13:49 [bug#43059] [PATCH 1/7] gnu: Add python-trytond-analytic-account Vinicius Monego
2020-08-26 13:51 ` [bug#43059] [PATCH 2/7] gnu: Add python-trytond-account-product Vinicius Monego
2020-08-26 13:51   ` [bug#43059] [PATCH 3/7] gnu: Add python-trytond-account-invoice Vinicius Monego
2020-08-26 13:51   ` [bug#43059] [PATCH 4/7] gnu: Add python-trytond-account-invoice-stock Vinicius Monego
2020-08-26 13:51   ` [bug#43059] [PATCH 5/7] gnu: Add python-trytond-purchase Vinicius Monego
2020-08-26 13:51   ` [bug#43059] [PATCH 6/7] gnu: Add python-trytond-purchase-request Vinicius Monego
2020-08-26 13:51   ` [bug#43059] [PATCH 7/7] gnu: Add python-trytond-stock-supply Vinicius Monego
2020-08-27  8:10 ` bug#43059: [PATCH 1/7] gnu: Add python-trytond-analytic-account Mathieu Othacehe

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.