guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

50/154: gnu: Add trytond-bank.


From: guix-commits
Subject: 50/154: gnu: Add trytond-bank.
Date: Tue, 21 Sep 2021 15:07:38 -0400 (EDT)

htgoebel pushed a commit to branch master
in repository guix.

commit 9987be26929eff44c46794555242fdf665e4f819
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Fri Aug 27 15:09:15 2021 +0200

    gnu: Add trytond-bank.
    
    * gnu/packages/tryton.scm (trytond-bank): New variable.
---
 gnu/packages/tryton.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm
index cb81695..addaea9 100644
--- a/gnu/packages/tryton.scm
+++ b/gnu/packages/tryton.scm
@@ -1433,6 +1433,30 @@ used in the list of authentications in the session 
section of the
 configuration file.")
     (license license:gpl3+)))
 
+(define-public trytond-bank
+  (package
+    (name "trytond-bank")
+    (version "6.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "trytond_bank" version))
+       (sha256
+        (base32 "0qwgp2s88n4hcqqxg1g34lmmvq5spdlkm978gzn6s96kmmzang0c"))))
+    (build-system python-build-system)
+    (arguments (tryton-arguments "bank"))
+    (native-inputs `(,@%standard-trytond-native-inputs))
+    (propagated-inputs
+     `(("python-stdnum" ,python-stdnum)
+       ("trytond" ,trytond)
+       ("trytond-currency" ,trytond-currency)
+       ("trytond-party" ,trytond-party)))
+    (home-page "https://docs.tryton.org/projects/modules-bank";)
+    (synopsis "Tryton module with banks")
+    (description "The @emph{Bank} Tryton module defines the concept of bank
+and account.")
+    (license license:gpl3+)))
+
 (define-public trytond-company
   (package
     (name "trytond-company")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]