all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Vinicius Monego <monego@posteo.net>
To: 43059@debbugs.gnu.org
Cc: Vinicius Monego <monego@posteo.net>
Subject: [bug#43059] [PATCH 7/7] gnu: Add python-trytond-stock-supply.
Date: Wed, 26 Aug 2020 10:51:54 -0300	[thread overview]
Message-ID: <20200826135154.33620-6-monego@posteo.net> (raw)
In-Reply-To: <20200826135154.33620-1-monego@posteo.net>

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

diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm
index 79a38d2e01..c4ea6c595a 100644
--- a/gnu/packages/tryton.scm
+++ b/gnu/packages/tryton.scm
@@ -730,6 +730,62 @@ lines and stock moves.  The unit price of the stock move is updated with the
 average price of the posted invoice lines that are linked to it.")
     (license license:gpl3+)))
 
+(define-public python-trytond-stock-supply
+  (package
+    (name "python-trytond-stock-supply")
+    (version "5.6.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "trytond_stock_supply" version))
+       (sha256
+        (base32 "0lw7qrg58k5pjpp3nz73rmlm8v086l49ri31ci75calm552zpfay"))))
+    (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_supply")))))))
+    (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-party" ,python-trytond-party)
+       ("python-trytond-product"
+        ,python-trytond-product)
+       ("python-trytond-purchase"
+        ,python-trytond-purchase)
+       ("python-trytond-purchase-request"
+        ,python-trytond-purchase-request)
+       ("python-trytond-stock" ,python-trytond-stock)))
+    (home-page "https://www.tryton.org/")
+    (synopsis "Tryton module for stock supply")
+    (description
+     "This package provides a Tryton module that adds automatic supply
+mechanisms and introduces the concepts of order point.")
+    (license license:gpl3+)))
+
 (define-public python-trytond-purchase
   (package
     (name "python-trytond-purchase")
-- 
2.20.1





  parent reply	other threads:[~2020-08-26 13:54 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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   ` Vinicius Monego [this message]
2020-08-27  8:10 ` bug#43059: [PATCH 1/7] gnu: Add python-trytond-analytic-account Mathieu Othacehe

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200826135154.33620-6-monego@posteo.net \
    --to=monego@posteo.net \
    --cc=43059@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.