diff options;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 David Thompson <davet@gnu.org>
;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
;;; Copyright © 2022 Vivien Kraus <vivien@planete-kraus.eu>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (test-pypi)
#:use-module (guix import pypi)
#:use-module (guix base32)
#:use-module (guix memoization)
#:use-module (guix utils)
#:use-module ((guix base16) #:select (base16-string->bytevector))
#:use-module (guix upstream)
#:use-module (gcrypt hash)
#:use-module (guix tests)
#:use-module (guix tests http)
#:use-module ((guix download) #:select (url--rw-r--r-- gnu/packages/tryton.scm 27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm index 9d497776e7..346d354b38 100644 --- a/gnu/packages/tryton.scm +++ b/gnu/packages/tryton.scm @@ -2499,6 +2499,33 @@ of times. On occasion there can be a production with the remaining quantity.") (license license:gpl3+))) +(define-public trytond-production-work + (package + (name "trytond-production-work") + (version "6.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "trytond_production_work" version)) + (sha256 + (base32 "01a09snawlr224s5aqhrdkal14qry4hlfsglnsk09yzbw6fx196b")))) + (build-system python-build-system) + (arguments (tryton-arguments "production_work")) + (native-inputs `(,@%standard-trytond-native-inputs)) + (propagated-inputs + `(("trytond" ,trytond) + ("trytond-company" ,trytond-company) + ("trytond-product" ,trytond-product) + ("trytond-production" ,trytond-production) + ("trytond-production-routing" ,trytond-production-routing) + ("trytond-stock" ,trytond-stock))) + (home-page "https://docs.tryton.org/projects/modules-production-work") + (synopsis "Tryton module for production work") + (description "The @emph{Production Work} Tryton module allows to manage +work order for each production. It also adds in the production cost for the +work cost.") + (license license:gpl3+))) + (define-public trytond-purchase (package (name "trytond-purchase") |