unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#43030] [PATCH 1/8] gnu: Add python-forex-python.
@ 2020-08-24 22:17 Vinicius Monego
  2020-08-24 22:20 ` [bug#43030] [PATCH 2/8] gnu: Add python-trytond-currency Vinicius Monego
  2020-08-25 14:49 ` bug#43030: [PATCH 1/8] gnu: Add python-forex-python Mathieu Othacehe
  0 siblings, 2 replies; 9+ messages in thread
From: Vinicius Monego @ 2020-08-24 22:17 UTC (permalink / raw)
  To: 43030; +Cc: Vinicius Monego

* gnu/packages/python-xyz.scm (python-forex-python): New variable.
---
 gnu/packages/python-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e1b1729b43..adecc49b78 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9460,6 +9460,42 @@ functions to find and load entry points.")
 from elisp.")
     (license license:gpl3)))
 
+(define-public python-forex-python
+  (package
+    (name "python-forex-python")
+    (version "1.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "forex-python" version))
+       (sha256
+        (base32 "1ma8cl1i2dh8aa99pifnlilyy4d1gd1s07fj0yd17wcbpsh532cj"))))
+    (build-system python-build-system)
+    (arguments
+     ;; Tests are not included in the PyPI tarball.  Also, the tests in the
+     ;; repository require online data.
+     `(#:tests? #f))
+    (propagated-inputs
+     `(("python-requests" ,python-requests)
+       ("python-simplejson" ,python-simplejson)))
+    (home-page "https://github.com/MicroPyramid/forex-python")
+    (synopsis "Foreign exchange rates and currency conversion")
+    (description
+     "Forex Python is a Free Foreign exchange rates and currency conversion.
+
+Features:
+@itemize
+@item List all currency rates.
+@item BitCoin price for all currencies.
+@item Converting amount to BitCoins.
+@item Get historical rates for any day since 1999.
+@item Conversion rate for one currency(ex; USD to INR).
+@item Convert amount from one currency to other.('USD 10$' to INR).
+@item Currency symbols.
+@item Currency names.
+@end itemize")
+    (license license:expat)))
+
 (define-public python-nbconvert
   (package
     (name "python-nbconvert")
-- 
2.20.1





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

* [bug#43030] [PATCH 2/8] gnu: Add python-trytond-currency.
  2020-08-24 22:17 [bug#43030] [PATCH 1/8] gnu: Add python-forex-python Vinicius Monego
@ 2020-08-24 22:20 ` Vinicius Monego
  2020-08-24 22:20   ` [bug#43030] [PATCH 3/8] gnu: Add python-trytond-company Vinicius Monego
                     ` (5 more replies)
  2020-08-25 14:49 ` bug#43030: [PATCH 1/8] gnu: Add python-forex-python Mathieu Othacehe
  1 sibling, 6 replies; 9+ messages in thread
From: Vinicius Monego @ 2020-08-24 22:20 UTC (permalink / raw)
  To: 43030; +Cc: Vinicius Monego

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

diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm
index 2304e0c998..2ae16619d7 100644
--- a/gnu/packages/tryton.scm
+++ b/gnu/packages/tryton.scm
@@ -213,6 +213,54 @@ and security.")
 addresses.")
     (license license:gpl3+)))
 
+(define-public python-trytond-currency
+  (package
+    (name "python-trytond-currency")
+    (version "5.6.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "trytond_currency" version))
+       (sha256
+        (base32 "1x6ynxpbafjpky5vfir9favijj6v5gl62szshladlx14ng6qgm68"))))
+    (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" "currency")))))))
+    (native-inputs
+     `(("python" ,python-minimal-wrapper)
+       ("python-dateutil" ,python-dateutil)
+       ("python-genshi" ,python-genshi)
+       ("python-forex-python" ,python-forex-python)
+       ("python-lxml" ,python-lxml)
+       ("python-magic" ,python-magic)
+       ("python-passlib" ,python-passlib)
+       ("python-polib" ,python-polib)
+       ("python-proteus" ,python-proteus)
+       ("python-pycountry" ,python-pycountry)
+       ("python-relatorio" ,python-relatorio)
+       ("python-werkzeug" ,python-werkzeug)
+       ("python-wrapt" ,python-wrapt)))
+    (propagated-inputs
+     `(("python-sql" ,python-sql)
+       ("python-trytond" ,python-trytond)))
+    (home-page "https://www.tryton.org/")
+    (synopsis "Tryton module with currencies")
+    (description
+     "This package provides a Tryton module that defines the concepts of
+currency and rate.")
+    (license license:gpl3+)))
+
 (define-public python-proteus
   (package
     (name "python-proteus")
-- 
2.20.1





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

* [bug#43030] [PATCH 3/8] gnu: Add python-trytond-company.
  2020-08-24 22:20 ` [bug#43030] [PATCH 2/8] gnu: Add python-trytond-currency Vinicius Monego
@ 2020-08-24 22:20   ` Vinicius Monego
  2020-08-24 22:20   ` [bug#43030] [PATCH 4/8] gnu: Add python-trytond-product Vinicius Monego
                     ` (4 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Vinicius Monego @ 2020-08-24 22:20 UTC (permalink / raw)
  To: 43030; +Cc: Vinicius Monego

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

diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm
index 2ae16619d7..949f906455 100644
--- a/gnu/packages/tryton.scm
+++ b/gnu/packages/tryton.scm
@@ -261,6 +261,55 @@ addresses.")
 currency and rate.")
     (license license:gpl3+)))
 
+(define-public python-trytond-company
+  (package
+    (name "python-trytond-company")
+    (version "5.6.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "trytond_company" version))
+       (sha256
+        (base32 "0fa2yswfal1fbmm0ml845lm6bwcm65fln6s1xq1wqi17xqbbx44x"))))
+    (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" "company")))))))
+    (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-sql" ,python-sql)
+       ("python-werkzeug" ,python-werkzeug)
+       ("python-wrapt" ,python-wrapt)))
+    (propagated-inputs
+     `(("python-trytond" ,python-trytond)
+       ("python-trytond-currency"
+        ,python-trytond-currency)
+       ("python-trytond-party" ,python-trytond-party)))
+    (home-page "https://www.tryton.org/")
+    (synopsis "Tryton module with companies and employees")
+    (description
+     "This package provides a Tryton module that defines the concepts of
+company and employee and extend the user model.")
+    (license license:gpl3+)))
+
 (define-public python-proteus
   (package
     (name "python-proteus")
-- 
2.20.1





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

* [bug#43030] [PATCH 4/8] gnu: Add python-trytond-product.
  2020-08-24 22:20 ` [bug#43030] [PATCH 2/8] gnu: Add python-trytond-currency Vinicius Monego
  2020-08-24 22:20   ` [bug#43030] [PATCH 3/8] gnu: Add python-trytond-company Vinicius Monego
@ 2020-08-24 22:20   ` Vinicius Monego
  2020-08-24 22:20   ` [bug#43030] [PATCH 5/8] gnu: Add python-simpleeval Vinicius Monego
                     ` (3 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Vinicius Monego @ 2020-08-24 22:20 UTC (permalink / raw)
  To: 43030; +Cc: Vinicius Monego

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

diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm
index 949f906455..cfa7a282ec 100644
--- a/gnu/packages/tryton.scm
+++ b/gnu/packages/tryton.scm
@@ -310,6 +310,55 @@ currency and rate.")
 company and employee and extend the user model.")
     (license license:gpl3+)))
 
+(define-public python-trytond-product
+  (package
+    (name "python-trytond-product")
+    (version "5.6.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "trytond_product" version))
+       (sha256
+        (base32 "0k1sw1jfgsm9qhyhv4lzama31db6ccjx5f2a7xw96ypflfl9f1xz"))))
+    (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" "product")))))))
+    (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-stdnum" ,python-stdnum)
+       ("python-trytond" ,python-trytond)
+       ("python-trytond-company"
+        ,python-trytond-company)))
+    (home-page "https://www.tryton.org/")
+    (synopsis "Tryton module with products")
+    (description
+     "This package provides a Tryton module that defines two concepts: Product
+Template and Product.")
+    (license license:gpl3+)))
+
 (define-public python-proteus
   (package
     (name "python-proteus")
-- 
2.20.1





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

* [bug#43030] [PATCH 5/8] gnu: Add python-simpleeval.
  2020-08-24 22:20 ` [bug#43030] [PATCH 2/8] gnu: Add python-trytond-currency Vinicius Monego
  2020-08-24 22:20   ` [bug#43030] [PATCH 3/8] gnu: Add python-trytond-company Vinicius Monego
  2020-08-24 22:20   ` [bug#43030] [PATCH 4/8] gnu: Add python-trytond-product Vinicius Monego
@ 2020-08-24 22:20   ` Vinicius Monego
  2020-08-24 22:20   ` [bug#43030] [PATCH 6/8] gnu: Add python-trytond-account Vinicius Monego
                     ` (2 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: Vinicius Monego @ 2020-08-24 22:20 UTC (permalink / raw)
  To: 43030; +Cc: Vinicius Monego

* gnu/packages/python-xyz.scm (python-simpleeval): New variable.
---
 gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index adecc49b78..66d161474a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9496,6 +9496,27 @@ Features:
 @end itemize")
     (license license:expat)))
 
+(define-public python-simpleeval
+  (package
+    (name "python-simpleeval")
+    (version "0.9.10")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "simpleeval" version))
+       (sha256
+        (base32 "1skvl467kj83rzkhk01i0wm8m5vmh6j5znrfdizn6r18ii45a839"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/danthedeckie/simpleeval")
+    (synopsis "Simple, safe single expression evaluator library")
+    (description
+     "This package provides a quick single file library for easily adding
+evaluatable expressions into python projects.  Say you want to allow a user
+to set an alarm volume, which could depend on the time of day, alarm level,
+how many previous alarms had gone off, and if there is music playing at the
+time.")
+    (license license:expat)))
+
 (define-public python-nbconvert
   (package
     (name "python-nbconvert")
-- 
2.20.1





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

* [bug#43030] [PATCH 6/8] gnu: Add python-trytond-account.
  2020-08-24 22:20 ` [bug#43030] [PATCH 2/8] gnu: Add python-trytond-currency Vinicius Monego
                     ` (2 preceding siblings ...)
  2020-08-24 22:20   ` [bug#43030] [PATCH 5/8] gnu: Add python-simpleeval Vinicius Monego
@ 2020-08-24 22:20   ` Vinicius Monego
  2020-08-24 22:20   ` [bug#43030] [PATCH 7/8] gnu: Add python-trytond-stock Vinicius Monego
  2020-08-24 22:20   ` [bug#43030] [PATCH 8/8] gnu: Add python-trytond-stock-lot Vinicius Monego
  5 siblings, 0 replies; 9+ messages in thread
From: Vinicius Monego @ 2020-08-24 22:20 UTC (permalink / raw)
  To: 43030; +Cc: Vinicius Monego

* gnu/packages/tryton.scm (python-trytond-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 cfa7a282ec..4a03452460 100644
--- a/gnu/packages/tryton.scm
+++ b/gnu/packages/tryton.scm
@@ -359,6 +359,58 @@ company and employee and extend the user model.")
 Template and Product.")
     (license license:gpl3+)))
 
+(define-public python-trytond-account
+  (package
+    (name "python-trytond-account")
+    (version "5.6.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "trytond_account" version))
+       (sha256
+        (base32 "17q0cxp3vkymbv62ir4c6kg9y8lx8xvz30p0asrbsnbgwl6sjm30"))))
+    (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" "account")))))))
+    (native-inputs
+     `(("python" ,python-minimal-wrapper)
+       ("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-dateutil" ,python-dateutil)
+       ("python-simpleeval" ,python-simpleeval)
+       ("python-sql" ,python-sql)
+       ("python-trytond" ,python-trytond)
+       ("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 accounting")
+    (description
+     "This package provides a Tryton module that defines the fundamentals for
+most of accounting needs.")
+    (license license:gpl3+)))
+
 (define-public python-proteus
   (package
     (name "python-proteus")
-- 
2.20.1





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

* [bug#43030] [PATCH 7/8] gnu: Add python-trytond-stock.
  2020-08-24 22:20 ` [bug#43030] [PATCH 2/8] gnu: Add python-trytond-currency Vinicius Monego
                     ` (3 preceding siblings ...)
  2020-08-24 22:20   ` [bug#43030] [PATCH 6/8] gnu: Add python-trytond-account Vinicius Monego
@ 2020-08-24 22:20   ` Vinicius Monego
  2020-08-24 22:20   ` [bug#43030] [PATCH 8/8] gnu: Add python-trytond-stock-lot Vinicius Monego
  5 siblings, 0 replies; 9+ messages in thread
From: Vinicius Monego @ 2020-08-24 22:20 UTC (permalink / raw)
  To: 43030; +Cc: Vinicius Monego

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

diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm
index 4a03452460..de13969056 100644
--- a/gnu/packages/tryton.scm
+++ b/gnu/packages/tryton.scm
@@ -411,6 +411,61 @@ Template and Product.")
 most of accounting needs.")
     (license license:gpl3+)))
 
+(define-public python-trytond-stock
+  (package
+    (name "python-trytond-stock")
+    (version "5.6.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "trytond_stock" version))
+       (sha256
+        (base32 "13m57absscks2advpjz0mmmp6c0c4ksf9aln1brqyd0js38arw76"))))
+    (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" "stock")))))))
+    (native-inputs
+     `(("python" ,python-minimal-wrapper)
+       ("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-simpleeval" ,python-simpleeval)
+       ("python-sql" ,python-sql)
+       ("python-trytond" ,python-trytond)
+       ("python-trytond-company"
+        ,python-trytond-company)
+       ("python-trytond-currency"
+        ,python-trytond-currency)
+       ("python-trytond-party" ,python-trytond-party)
+       ("python-trytond-product"
+        ,python-trytond-product)))
+    (home-page "https://www.tryton.org/")
+    (synopsis "Tryton module for stock and inventory")
+    (description
+     "This package provides a Tryton module that defines the fundamentals for
+all stock management situations: Locations where products are stored, moves
+between these locations, shipments for product arrivals and departures and
+inventory to control and update stock levels.")
+    (license license:gpl3+)))
+
 (define-public python-proteus
   (package
     (name "python-proteus")
-- 
2.20.1





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

* [bug#43030] [PATCH 8/8] gnu: Add python-trytond-stock-lot.
  2020-08-24 22:20 ` [bug#43030] [PATCH 2/8] gnu: Add python-trytond-currency Vinicius Monego
                     ` (4 preceding siblings ...)
  2020-08-24 22:20   ` [bug#43030] [PATCH 7/8] gnu: Add python-trytond-stock Vinicius Monego
@ 2020-08-24 22:20   ` Vinicius Monego
  5 siblings, 0 replies; 9+ messages in thread
From: Vinicius Monego @ 2020-08-24 22:20 UTC (permalink / raw)
  To: 43030; +Cc: Vinicius Monego

* gnu/packages/tryton.scm (python-trytond-stock-lot): New variable.
---
 gnu/packages/tryton.scm | 48 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm
index de13969056..98b372be74 100644
--- a/gnu/packages/tryton.scm
+++ b/gnu/packages/tryton.scm
@@ -466,6 +466,54 @@ between these locations, shipments for product arrivals and departures and
 inventory to control and update stock levels.")
     (license license:gpl3+)))
 
+(define-public python-trytond-stock-lot
+  (package
+    (name "python-trytond-stock-lot")
+    (version "5.6.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "trytond_stock_lot" version))
+       (sha256
+        (base32 "0a0kc8dyx2zw244dhq6lm2jdp1kzpllhdhrmx7kkr9cjhp58rqip"))))
+    (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" "stock_lot")))))))
+    (native-inputs
+     `(("python" ,python)
+       ("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-sql" ,python-sql)
+       ("python-werkzeug" ,python-werkzeug)
+       ("python-wrapt" ,python-wrapt)))
+    (propagated-inputs
+     `(("python-trytond" ,python-trytond)
+       ("python-trytond-product"
+        ,python-trytond-product)
+       ("python-trytond-stock" ,python-trytond-stock)))
+    (home-page "https://www.tryton.org/")
+    (synopsis "Tryton module for lot of products")
+    (description
+     "This package provides a Tryton module that defines lot of products.")
+    (license license:gpl3+)))
+
 (define-public python-proteus
   (package
     (name "python-proteus")
-- 
2.20.1





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

* bug#43030: [PATCH 1/8] gnu: Add python-forex-python.
  2020-08-24 22:17 [bug#43030] [PATCH 1/8] gnu: Add python-forex-python Vinicius Monego
  2020-08-24 22:20 ` [bug#43030] [PATCH 2/8] gnu: Add python-trytond-currency Vinicius Monego
@ 2020-08-25 14:49 ` Mathieu Othacehe
  1 sibling, 0 replies; 9+ messages in thread
From: Mathieu Othacehe @ 2020-08-25 14:49 UTC (permalink / raw)
  To: Vinicius Monego; +Cc: 43030-done


Hello,

Nice job, thanks for your contribution :)

> +     "Forex Python is a Free Foreign exchange rates and currency conversion.

I edited this description and pushed the whole serie.

Mathieu




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

end of thread, other threads:[~2020-08-25 14:51 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-24 22:17 [bug#43030] [PATCH 1/8] gnu: Add python-forex-python Vinicius Monego
2020-08-24 22:20 ` [bug#43030] [PATCH 2/8] gnu: Add python-trytond-currency Vinicius Monego
2020-08-24 22:20   ` [bug#43030] [PATCH 3/8] gnu: Add python-trytond-company Vinicius Monego
2020-08-24 22:20   ` [bug#43030] [PATCH 4/8] gnu: Add python-trytond-product Vinicius Monego
2020-08-24 22:20   ` [bug#43030] [PATCH 5/8] gnu: Add python-simpleeval Vinicius Monego
2020-08-24 22:20   ` [bug#43030] [PATCH 6/8] gnu: Add python-trytond-account Vinicius Monego
2020-08-24 22:20   ` [bug#43030] [PATCH 7/8] gnu: Add python-trytond-stock Vinicius Monego
2020-08-24 22:20   ` [bug#43030] [PATCH 8/8] gnu: Add python-trytond-stock-lot Vinicius Monego
2020-08-25 14:49 ` bug#43030: [PATCH 1/8] gnu: Add python-forex-python Mathieu Othacehe

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).