me
/
guix
Archived
1
0
Fork 0

gnu: Add trytond-stock-package.

* gnu/packages/tryton.scm (trytond-stock-package): New variable.
master
Hartmut Goebel 2021-08-27 15:09:51 +02:00
parent 32b67eef82
commit ef294b8b5f
No known key found for this signature in database
GPG Key ID: 634A8DFFD3F631DF
1 changed files with 24 additions and 0 deletions

View File

@ -3938,6 +3938,30 @@ it is no more used to compute the forecast quantity of the stock.")
unit and quantity on stock lot.")
(license license:gpl3+)))
(define-public trytond-stock-package
(package
(name "trytond-stock-package")
(version "6.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "trytond_stock_package" version))
(sha256
(base32 "1jbpl141wyc19v27bcyqsph8p2zf9yqprm55yl642mvwq55bshq8"))))
(build-system python-build-system)
(arguments (tryton-arguments "stock_package"))
(native-inputs `(,@%standard-trytond-native-inputs))
(propagated-inputs
`(("trytond" ,trytond)
("trytond-company" ,trytond-company)
("trytond-product" ,trytond-product)
("trytond-stock" ,trytond-stock)))
(home-page "https://docs.tryton.org/projects/modules-stock-package")
(synopsis "Tryton module for stock packaging")
(description "The @emph{Stock Package} Tryton module allows to store
packaging information about customer and supplier return shipments.")
(license license:gpl3+)))
(define-public trytond-stock-supply
(package
(name "trytond-stock-supply")