082431f506
* gnu/packages/tryton.scm (trytond-account-payment-clearing): New variable.
1213 lines
44 KiB
Scheme
1213 lines
44 KiB
Scheme
;;; GNU Guix --- Functional package management for GNU
|
||
;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
|
||
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
|
||
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
|
||
;;; Copyright © 2021 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||
;;;
|
||
;;; 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 (gnu packages tryton)
|
||
#:use-module ((guix licenses) #:prefix license:)
|
||
#:use-module (gnu packages)
|
||
#:use-module (gnu packages check)
|
||
#:use-module (gnu packages databases)
|
||
#:use-module (gnu packages finance)
|
||
#:use-module (gnu packages glib)
|
||
#:use-module (gnu packages gnome)
|
||
#:use-module (gnu packages gtk)
|
||
#:use-module (gnu packages python)
|
||
#:use-module (gnu packages python-crypto)
|
||
#:use-module (gnu packages python-web)
|
||
#:use-module (gnu packages python-xyz)
|
||
#:use-module (gnu packages time)
|
||
#:use-module (gnu packages xml)
|
||
#:use-module (guix packages)
|
||
#:use-module (guix download)
|
||
#:use-module (guix utils)
|
||
#:use-module (guix build-system python))
|
||
|
||
(define-public trytond
|
||
(package
|
||
(name "trytond")
|
||
(version "6.0.6")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond" version))
|
||
(sha256
|
||
(base32 "1jp5cadqpwkcnml8r1hj6aak5kc8an2d5ai62p96x77nn0dp3ny4"))))
|
||
(build-system python-build-system)
|
||
(propagated-inputs
|
||
`(("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-psycopg2" ,python-psycopg2)
|
||
("python-relatorio" ,python-relatorio)
|
||
("python-sql" ,python-sql)
|
||
("python-werkzeug" ,python-werkzeug)
|
||
("python-wrapt" ,python-wrapt)))
|
||
(native-inputs
|
||
`(("python-mock" ,python-mock)
|
||
("python-pillow" ,python-pillow)))
|
||
(arguments
|
||
`(#:phases
|
||
(modify-phases %standard-phases
|
||
(add-before 'check 'preparations
|
||
(lambda _
|
||
(setenv "DB_NAME" ":memory:")
|
||
(setenv "HOME" "/tmp")
|
||
#t)))))
|
||
(home-page "https://www.tryton.org/")
|
||
(synopsis "Tryton Server")
|
||
(description "Tryton is a three-tier high-level general purpose
|
||
application platform using PostgreSQL as its main database engine. It is the
|
||
core base of a complete business solution providing modularity, scalability
|
||
and security.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public python-trytond
|
||
(deprecated-package "python-trytond" trytond))
|
||
|
||
(define-public tryton
|
||
(package
|
||
(name "tryton")
|
||
(version "6.0.5")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "tryton" version))
|
||
(sha256
|
||
(base32 "15cbp2r25pkr7lp4yliqgb6d0n779z70d4gckv56bx5aw4z27f66"))))
|
||
(build-system python-build-system)
|
||
(arguments
|
||
`(#:phases
|
||
(modify-phases %standard-phases
|
||
(add-before 'check 'change-home
|
||
(lambda _
|
||
;; Change from /homeless-shelter to /tmp for write permission.
|
||
(setenv "HOME" "/tmp")))
|
||
(add-after 'install 'wrap-gi-python
|
||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||
(let ((out (assoc-ref outputs "out"))
|
||
(gi-typelib-path (getenv "GI_TYPELIB_PATH")))
|
||
(wrap-program (string-append out "/bin/tryton")
|
||
`("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))))
|
||
#t)))))
|
||
(native-inputs
|
||
`(("glib-compile-schemas" ,glib "bin")
|
||
("gobject-introspection" ,gobject-introspection)))
|
||
(propagated-inputs
|
||
`(("gdk-pixbuf" ,gdk-pixbuf+svg)
|
||
("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
|
||
("gtk+" ,gtk+)
|
||
("python-dateutil" ,python-dateutil)
|
||
("python-pycairo" ,python-pycairo)
|
||
("python-pygobject" ,python-pygobject)))
|
||
(home-page "https://www.tryton.org/")
|
||
(synopsis "Tryton Client")
|
||
(description
|
||
"This package provides the Tryton GTK client.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public python-proteus
|
||
(package
|
||
(name "python-proteus")
|
||
(version "6.0.2")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "proteus" version))
|
||
(sha256
|
||
(base32 "0qr7rir7ysxvy2kyfzp2d2kcw9qzq4vdkddbwswzgddxjpycksdh"))))
|
||
(build-system python-build-system)
|
||
;; Tests require python-trytond-party which requires python-proteus.
|
||
(arguments
|
||
`(#:tests? #f))
|
||
(propagated-inputs
|
||
`(("python-dateutil" ,python-dateutil)))
|
||
(home-page "http://www.tryton.org/")
|
||
(synopsis "Library to access a Tryton server as a client")
|
||
(description
|
||
"This package provides a library to access Tryton server as a client.")
|
||
(license license:lgpl3+)))
|
||
|
||
(define (tryton-phases module . extra-arguments)
|
||
"Return the phases for building and testing a Tryton module named MODULE.
|
||
If present, pass EXTRA-ARGUMENTS to runtest as well."
|
||
`(modify-phases %standard-phases
|
||
(replace 'check
|
||
(lambda* (#:key inputs outputs tests? #:allow-other-keys)
|
||
(let ((runtest
|
||
(string-append
|
||
(assoc-ref inputs "trytond")
|
||
"/lib/python"
|
||
,(version-major+minor (package-version python))
|
||
"/site-packages/trytond/tests/run-tests.py")))
|
||
(when tests?
|
||
(add-installed-pythonpath inputs outputs)
|
||
(invoke "python" runtest "-m" ,module ,@extra-arguments)))))))
|
||
|
||
(define (tryton-arguments module . extra-arguments)
|
||
"Like ’tryton-phases’, but directly return all arguments for
|
||
the build system."
|
||
`(#:phases ,(apply tryton-phases module extra-arguments)))
|
||
|
||
;;;
|
||
;;; Tryton modules - please sort alphabetically
|
||
;;;
|
||
|
||
(define %standard-trytond-native-inputs
|
||
;; native-inputs required by most of the tryton module for running the test
|
||
`(("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)))
|
||
|
||
(define-public trytond-account
|
||
(package
|
||
(name "trytond-account")
|
||
(version "6.0.3")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account" version))
|
||
(sha256
|
||
(base32 "0j1mn8sd5n8rkwgfvcy9kf8s7s3qxvnilnc72i83ac573zj922xc"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("python-simpleeval" ,python-simpleeval)
|
||
("trytond" ,trytond)
|
||
("trytond-company" ,trytond-company)
|
||
("trytond-currency" ,trytond-currency)
|
||
("trytond-party" ,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-trytond-account
|
||
(deprecated-package "python-trytond-account" trytond-account))
|
||
|
||
(define-public trytond-account-asset
|
||
(package
|
||
(name "trytond-account-asset")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_asset" version))
|
||
(sha256
|
||
(base32 "12qf6f4hpxi6c3mx18d07ljbzzr58h0lg8yz95nby3g3mpx2mlaz"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_asset"))
|
||
(native-inputs
|
||
`(,@%standard-trytond-native-inputs
|
||
("trytond-purchase" ,trytond-purchase)))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-account-invoice" ,trytond-account-invoice)
|
||
("trytond-account-product" ,trytond-account-product)
|
||
("trytond-product" ,trytond-product)))
|
||
(home-page "https://docs.tryton.org/projects/modules-account-asset")
|
||
(synopsis "Tryton module for assets management")
|
||
(description "The @emph{Account Asset} Tryton module adds the depreciation
|
||
of fixed assets.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-be
|
||
(package
|
||
(name "trytond-account-be")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_be" version))
|
||
(sha256
|
||
(base32 "1l4zxsh9f3ndsgj3224xv23nr7gbg5kwrydwgv34nlkyxp5557dk"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_be"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-account-eu" ,trytond-account-eu)))
|
||
(home-page "https://docs.tryton.org/projects/modules-account-be")
|
||
(synopsis "Tryton module with Belgian chart of accounts")
|
||
(description "The @emph{Account BE} Tryton module defines the standard
|
||
chart of account for Belgium.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-cash-rounding
|
||
(package
|
||
(name "trytond-account-cash-rounding")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_cash_rounding" version))
|
||
(sha256
|
||
(base32 "15xl36929zgfw9rlwaqdqs5l4ijspfx8i060z6884p2nizhh69s5"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_cash_rounding"))
|
||
(native-inputs
|
||
`(,@%standard-trytond-native-inputs
|
||
("trytond-account-invoice" ,trytond-account-invoice)
|
||
("trytond-purchase" ,trytond-purchase)
|
||
("trytond-sale" ,trytond-sale)))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-currency" ,trytond-currency)))
|
||
(home-page
|
||
"https://docs.tryton.org/projects/modules-account-cash-rounding")
|
||
(synopsis "Tryton module to round cash amount")
|
||
(description "The @emph{Account Cash Rounding} Tryton module allows cash
|
||
amounts to be rounded using the cash rounding factor of the currency.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-credit-limit
|
||
(package
|
||
(name "trytond-account-credit-limit")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_credit_limit" version))
|
||
(sha256
|
||
(base32 "1ni4cfydypxrkdj7fc0j4js9ygfkxa22ii5db2p89z2izbg1hxd8"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_credit_limit"))
|
||
(native-inputs
|
||
`(,@%standard-trytond-native-inputs
|
||
("trytond-account-dunning" ,trytond-account-dunning)))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-company" ,trytond-company)
|
||
("trytond-party" ,trytond-party)))
|
||
(home-page "https://docs.tryton.org/projects/modules-account-credit-limit")
|
||
(synopsis "Tryton module for account credit limit")
|
||
(description "The @emph{Account Credit Limit} Tryton module for manages
|
||
credit limit of parties.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-de-skr03
|
||
(package
|
||
(name "trytond-account-de-skr03")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_de_skr03" version))
|
||
(sha256
|
||
(base32 "1dhgspabr2bm0y6qkzh5kz6badhf23arzkw7lra1zsn52r23j9dl"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_de_skr03"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)))
|
||
(home-page "https://docs.tryton.org/projects/modules-account-de-skr03")
|
||
(synopsis "Tryton module with German chart of accounts SKR03")
|
||
(description "This package provides the German SKR03 chart of accounts for
|
||
Tryton.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-deposit
|
||
(package
|
||
(name "trytond-account-deposit")
|
||
(version "6.0.1")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_deposit" version))
|
||
(sha256
|
||
(base32 "005yw868wxv8fhp7dlqd2z19hhjlmk4cgqa36axdfjmbwxvh1r6r"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_deposit"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-account-invoice" ,trytond-account-invoice)
|
||
("trytond-company" ,trytond-company)
|
||
("trytond-party" ,trytond-party)))
|
||
(home-page "https://docs.tryton.org/projects/modules-account-deposit")
|
||
(synopsis "Tryton module for accounting deposit")
|
||
(description "The @emph{Account Deposit} Tryton module adds support for
|
||
deposit accounting.
|
||
|
||
A deposit is an amount paid by the customer prior to the company providing it
|
||
with services or goods. A wizard on invoice allows to recall prior deposit of
|
||
the party.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-dunning
|
||
(package
|
||
(name "trytond-account-dunning")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_dunning" version))
|
||
(sha256
|
||
(base32 "0d5wabn5g1gzmllihkdhzqix934184v303pp20927qxpzb2pm3qw"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_dunning"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-company" ,trytond-company)
|
||
("trytond-party" ,trytond-party)))
|
||
(home-page "https://docs.tryton.org/projects/modules-account-dunning")
|
||
(synopsis "Tryton module for account dunning")
|
||
(description "The @emph{Account Dunning} Tryton module adds dunning for
|
||
receivable move lines.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-dunning-email
|
||
(package
|
||
(name "trytond-account-dunning-email")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_dunning_email" version))
|
||
(sha256
|
||
(base32 "0sbh2rnziw5fhlbaq4n8q9rwqcgz35rik77dbvhflyyjdxh51vfq"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_dunning_email"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account-dunning" ,trytond-account-dunning)
|
||
("trytond-account-dunning-letter" ,trytond-account-dunning-letter)
|
||
("trytond-party" ,trytond-party)))
|
||
(home-page
|
||
"https://docs.tryton.org/projects/modules-account-dunning-email")
|
||
(synopsis "Tryton module for account dunning email")
|
||
(description "This package provides a Tryton module for sending dunning
|
||
emails.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-dunning-fee
|
||
(package
|
||
(name "trytond-account-dunning-fee")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_dunning_fee" version))
|
||
(sha256
|
||
(base32 "1h8qlrdvpyyf36cdss5lv3qp4h4xs6kp3ybh9ci14mhwy0jyni75"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_dunning_fee"))
|
||
(native-inputs
|
||
`(,@%standard-trytond-native-inputs
|
||
("trytond-account-dunning-letter" ,trytond-account-dunning-letter)))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account-dunning" ,trytond-account-dunning)
|
||
("trytond-account-product" ,trytond-account-product)))
|
||
(home-page "https://docs.tryton.org/projects/modules-account-dunning-fee")
|
||
(synopsis "Tryton module for account dunning fee")
|
||
(description "This package provides a Tryton module for generating
|
||
accounting moves as fees when processing dunning.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-dunning-letter
|
||
(package
|
||
(name "trytond-account-dunning-letter")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_dunning_letter" version))
|
||
(sha256
|
||
(base32 "0xb0mpf7n8jjgm8sb52q5sb2fjs1ap1gc0p33csdgz2lyh66lh3b"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_dunning_letter"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-account-dunning" ,trytond-account-dunning)
|
||
("trytond-company" ,trytond-company)
|
||
("trytond-party" ,trytond-party)))
|
||
(home-page
|
||
"https://docs.tryton.org/projects/modules-account-dunning-letter")
|
||
(synopsis "Tryton module for account dunning letter")
|
||
(description "This package provides a Tryton module for generating dunning
|
||
letters.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-es
|
||
(package
|
||
(name "trytond-account-es")
|
||
(version "6.0.2")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_es" version))
|
||
(sha256
|
||
(base32 "19qflzfwbbwz7jxxbah2l8z89m1rwsgvm80w2qsjw93chzabz802"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_es"))
|
||
(native-inputs
|
||
`(,@%standard-trytond-native-inputs
|
||
("trytond-account-asset" ,trytond-account-asset)
|
||
("trytond-account-payment-sepa" ,trytond-account-payment-sepa)))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-account-eu" ,trytond-account-eu)
|
||
("trytond-account-invoice" ,trytond-account-invoice)
|
||
("trytond-party" ,trytond-party)))
|
||
(home-page "https://docs.tryton.org/projects/modules-account-es")
|
||
(synopsis "Tryton with Spanish chart of accounts")
|
||
(description "This package provides the following Spanish charts of
|
||
accounts for Tryton:
|
||
@itemize
|
||
@item Plan General Contable Español 2008
|
||
@item Plan Contable para PYMES 2008
|
||
@end itemize
|
||
|
||
A wizard allows to generate the following AEAT files:
|
||
|
||
@itemize
|
||
@item Modelo 111
|
||
@item Modelo 115
|
||
@item Modelo 303
|
||
@end itemize")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-eu
|
||
(package
|
||
(name "trytond-account-eu")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_eu" version))
|
||
(sha256
|
||
(base32 "1x3w7iijkckv20q8lpqb5fnfrvddm130f51mcpnh4hlyx14q1c5i"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_eu"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-account-invoice" ,trytond-account-invoice)
|
||
("trytond-company" ,trytond-company)
|
||
("trytond-currency" ,trytond-currency)
|
||
("trytond-party" ,trytond-party)))
|
||
(home-page "https://docs.tryton.org/projects/modules-account-eu")
|
||
(synopsis "Tryton module for european accounting")
|
||
(description "This package provides a Tryton module implementing common
|
||
accounting requirements in Europe. It includes:
|
||
|
||
@itemize
|
||
@item EC Sales List (ESL)
|
||
@end itemize")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-fr
|
||
(package
|
||
(name "trytond-account-fr")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_fr" version))
|
||
(sha256
|
||
(base32 "1zpzdnd68gsjrz4as019amygdh8yad8wvwrm22dbccwmbbnyvqpg"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_fr"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-party-siret" ,trytond-party-siret)))
|
||
(home-page "https://docs.tryton.org/projects/modules-account-fr")
|
||
(synopsis "Tryton module with French chart of accounts")
|
||
(description "This package provides the French standard chart of account
|
||
for Tryton.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-fr-chorus
|
||
(package
|
||
(name "trytond-account-fr-chorus")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_fr_chorus" version))
|
||
(sha256
|
||
(base32 "13z30390zinv6ps0zr3k7mdmxrw2nhr49k248yjk0c0qh9rwifll"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_fr_chorus"))
|
||
(native-inputs
|
||
`(,@%standard-trytond-native-inputs
|
||
("trytond-edocument-uncefact" ,trytond-edocument-uncefact)))
|
||
(propagated-inputs
|
||
`(("python-requests" ,python-requests)
|
||
("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-account-invoice" ,trytond-account-invoice)
|
||
("trytond-company" ,trytond-company)
|
||
("trytond-party" ,trytond-party)
|
||
("trytond-party-siret" ,trytond-party-siret)))
|
||
(home-page "https://docs.tryton.org/projects/modules-account-fr-chorus")
|
||
(synopsis "Tryton module to communicate with the French Chorus Pro
|
||
portal")
|
||
(description "This package provides a Tryton module to send invoices
|
||
through the French Chorus Pro portal.
|
||
|
||
If the party is checked for Chorus Pro, all posted customer invoices are
|
||
queued to be sent. A cron job will send them every 15 minutes by default,
|
||
using the credential from the accounting configuration.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-invoice
|
||
(package
|
||
(name "trytond-account-invoice")
|
||
(version "6.0.3")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_invoice" version))
|
||
(sha256
|
||
(base32 "0r8zigb4qmv40kf835x8jd7049nnhk5g7g0aibvfd0y9p28lspnz"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_invoice"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-account-product" ,trytond-account-product)
|
||
("trytond-company" ,trytond-company)
|
||
("trytond-currency" ,trytond-currency)
|
||
("trytond-party" ,trytond-party)
|
||
("trytond-product" ,trytond-product)))
|
||
(home-page "https://www.tryton.org/")
|
||
(synopsis "Tryton module for invoicing")
|
||
(description
|
||
"This package provides a Tryton module that adds the invoice, payment
|
||
term.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public python-trytond-account-invoice
|
||
(deprecated-package "python-trytond-account-invoice" trytond-account-invoice))
|
||
|
||
(define-public trytond-account-invoice-correction
|
||
(package
|
||
(name "trytond-account-invoice-correction")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_invoice_correction" version))
|
||
(sha256
|
||
(base32 "152jxsl6v2wclk1wjhykbyvianh47cp2yg575hkx18dfynyp7nmw"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_invoice_correction"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account-invoice" ,trytond-account-invoice)))
|
||
(home-page
|
||
"https://docs.tryton.org/projects/modules-account-invoice-correction")
|
||
(synopsis "Tryton module to correct invoice")
|
||
(description "The @emph{Account Invoice Correction} Tryton module adds a
|
||
wizard on invoice which allows select lines for which the unit price must be
|
||
corrected. A new invoice is created with those lines in double: once with the
|
||
original quantity, once with the inverted quantity.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-invoice-defer
|
||
(package
|
||
(name "trytond-account-invoice-defer")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_invoice_defer" version))
|
||
(sha256
|
||
(base32 "1ay9cpf6z8j3gamwy52z88qg31s09wkp6k5flv20f9c00hvly452"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_invoice_defer"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-account-invoice" ,trytond-account-invoice)
|
||
("trytond-company" ,trytond-company)))
|
||
(home-page
|
||
"https://docs.tryton.org/projects/modules-account-invoice-defer")
|
||
(synopsis "Tryton module to defer expense and revenue")
|
||
(description "The @emph{Account Invoice Defer} Tryton module allows to
|
||
defer the expense or the revenue of an invoice line over many periods.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-invoice-history
|
||
(package
|
||
(name "trytond-account-invoice-history")
|
||
(version "6.0.1")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_invoice_history" version))
|
||
(sha256
|
||
(base32 "0pq1raj6v76vqsb2mk1bfv1vg1ngfk9iiai30rlzj2zcl53phcvj"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_invoice_history"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account-invoice" ,trytond-account-invoice)
|
||
("trytond-party" ,trytond-party)))
|
||
(home-page
|
||
"https://docs.tryton.org/projects/modules-account-invoice-history")
|
||
(synopsis "Tryton module to historize invoices")
|
||
(description "The @emph{Account Invoice History} Tryton module activates
|
||
the historization of the invoice and its related fields.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-invoice-line-standalone
|
||
(package
|
||
(name "trytond-account-invoice-line-standalone")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_invoice_line_standalone" version))
|
||
(sha256
|
||
(base32 "1affxhinyzz1lqfq621f76fixnx523fi7qrxwsqa4f1b6g31651a"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_invoice_line_standalone"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account-invoice" ,trytond-account-invoice)))
|
||
(home-page
|
||
"https://docs.tryton.org/projects/modules-account-invoice-line-standalone")
|
||
(synopsis "Tryton module to have standalone invoice lines")
|
||
(description "The @emph{Account Invoice Line Standalone} Tryton module
|
||
allows to create invoice line not linked to an invoice.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-invoice-secondary-unit
|
||
(package
|
||
(name "trytond-account-invoice-secondary-unit")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_invoice_secondary_unit" version))
|
||
(sha256
|
||
(base32 "0wam7v92ldajpx3529x2cfvczgwv8ayr6hi6bwj8fi736p9x2kbp"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_invoice_secondary_unit"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account-invoice" ,trytond-account-invoice)
|
||
("trytond-product" ,trytond-product)))
|
||
(home-page
|
||
"https://docs.tryton.org/projects/modules-account-invoice-secondary-unit")
|
||
(synopsis "Tryton module to add a secondary unit on invoice line")
|
||
(description "The @emph{Account Invoice Secondary Unit} Tryton module adds
|
||
a secondary unit of measure on invoice line.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-invoice-stock
|
||
(package
|
||
(name "trytond-account-invoice-stock")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_invoice_stock" version))
|
||
(sha256
|
||
(base32 "1228n6vsx0rdjsy3idvpyssa3n21nhvz9gqaacwa46c0hp2251bp"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_invoice_stock"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account-invoice" ,trytond-account-invoice)
|
||
("trytond-product" ,trytond-product)
|
||
("trytond-stock" ,trytond-stock)))
|
||
(home-page "https://www.tryton.org/")
|
||
(synopsis "Tryton module to link stock and invoice")
|
||
(description
|
||
"This package provides a Tryton module that adds link between invoice
|
||
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-account-invoice-stock
|
||
(deprecated-package
|
||
"python-trytond-account-invoice-stock" trytond-account-invoice-stock))
|
||
|
||
(define-public trytond-account-payment
|
||
(package
|
||
(name "trytond-account-payment")
|
||
(version "6.0.1")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_payment" version))
|
||
(sha256
|
||
(base32 "006d78kcml65mxikqp80igln118vkxfs9ah03lq5j9bvnfr6bb2m"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_payment"))
|
||
(native-inputs
|
||
`(,@%standard-trytond-native-inputs
|
||
("trytond-account-invoice" ,trytond-account-invoice)))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-company" ,trytond-company)
|
||
("trytond-currency" ,trytond-currency)
|
||
("trytond-party" ,trytond-party)))
|
||
(home-page "https://docs.tryton.org/projects/modules-account-payment")
|
||
(synopsis "Tryton module for payment")
|
||
(description "This package provides a Tryton module for generating grouped
|
||
payments for receivable or payable Account Move Lines.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-payment-braintree
|
||
(package
|
||
(name "trytond-account-payment-braintree")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_payment_braintree" version))
|
||
(sha256
|
||
(base32 "0dgw47q4m5l13bhfl1kdpajh0q94pazdrq9sqzf1vg9mggai2gvi"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_payment_braintree"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("python-braintree" ,python-braintree)
|
||
("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-account-payment" ,trytond-account-payment)
|
||
("trytond-party" ,trytond-party)))
|
||
(home-page
|
||
"https://docs.tryton.org/projects/modules-account-payment-braintree")
|
||
(synopsis "Tryton module for Braintree payment")
|
||
(description "The @emph{Account Payment Braintree} Tryton module allows
|
||
receipt of payments using Braintree. It uses the Drop-in UI in a checkout
|
||
form to handle the payment method nonce for card and other supported payment
|
||
methods.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-payment-clearing
|
||
(package
|
||
(name "trytond-account-payment-clearing")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_payment_clearing" version))
|
||
(sha256
|
||
(base32 "0dvjfgp0lrqn838wchkmhbbg4990xx2jv337rivnis164nw84dn0"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_payment_clearing"))
|
||
(native-inputs
|
||
`(,@%standard-trytond-native-inputs
|
||
("trytond-account-statement" ,trytond-account-statement)
|
||
("trytond-account-statement-rule" ,trytond-account-statement-rule)))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account-payment" ,trytond-account-payment)))
|
||
(home-page
|
||
"https://docs.tryton.org/projects/modules-account-payment-clearing")
|
||
(synopsis "Tryton module for payment clearing")
|
||
(description "The @emph{Account Payment Clearing} Tryton module allows to
|
||
generate account move when a payment is succeeded between the
|
||
receivable/payable account to a clearing account defined on the payment
|
||
journal.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public trytond-account-product
|
||
(package
|
||
(name "trytond-account-product")
|
||
(version "6.0.2")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_account_product" version))
|
||
(sha256
|
||
(base32 "1z0dn1p22smzb4a9v451224wrpxcw94inl7jxkarc0q088gasn7d"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "account_product"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-analytic-account" ,trytond-analytic-account)
|
||
("trytond-company" ,trytond-company)
|
||
("trytond-product" ,trytond-product)))
|
||
(home-page "https://www.tryton.org/")
|
||
(synopsis "Tryton module to add accounting on product")
|
||
(description
|
||
"This package provides a Tryton module that adds accounting on product
|
||
and category.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public python-trytond-account-product
|
||
(deprecated-package "python-trytond-account-product" trytond-account-product))
|
||
|
||
(define-public trytond-analytic-account
|
||
(package
|
||
(name "trytond-analytic-account")
|
||
(version "6.0.2")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_analytic_account" version))
|
||
(sha256
|
||
(base32 "09j9xz41n5hk3j7w63xbw1asd3p00prqvl652qcm9x1nrlmqiw3r"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "analytic_account"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-company" ,trytond-company)
|
||
("trytond-currency" ,trytond-currency)
|
||
("trytond-party" ,trytond-party)))
|
||
(home-page "https://www.tryton.org/")
|
||
(synopsis "Tryton module for analytic accounting")
|
||
(description
|
||
"This package provides a Tryton module that adds the fundamentals
|
||
required to analyse accounting using multiple different axes.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public python-trytond-analytic-account
|
||
(deprecated-package
|
||
"python-trytond-analytic-account" trytond-analytic-account))
|
||
|
||
(define-public trytond-company
|
||
(package
|
||
(name "trytond-company")
|
||
(version "6.0.3")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_company" version))
|
||
(sha256
|
||
(base32 "1q4qdyg32dn00pn3pj2yjl3jhxaqpv7a1cv5s5c95cpy5p46p02n"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "company"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-currency" ,trytond-currency)
|
||
("trytond-party" ,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-trytond-company
|
||
(deprecated-package "python-trytond-company" trytond-company))
|
||
|
||
(define-public trytond-country
|
||
(package
|
||
(name "trytond-country")
|
||
(version "6.0.1")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_country" version))
|
||
(sha256
|
||
(base32 "1ksinysac7p0k8avsz8xqzfkmm21s6i93qyrsma5h4y5477cwmw7"))))
|
||
(build-system python-build-system)
|
||
;; Doctest contains one test that requires internet access.
|
||
(arguments (tryton-arguments "country" "--no-doctest"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("python-pycountry" ,python-pycountry)
|
||
("trytond" ,trytond)))
|
||
(home-page "http://www.tryton.org/")
|
||
(synopsis "Tryton module with countries")
|
||
(description
|
||
"This package provides a Tryton module with countries.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public python-trytond-country
|
||
(deprecated-package "python-trytond-country" trytond-country))
|
||
|
||
(define-public trytond-currency
|
||
(package
|
||
(name "trytond-currency")
|
||
(version "6.0.1")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_currency" version))
|
||
(sha256
|
||
(base32 "0fs2wvhgvc0l4yzs5m9l8z4lbzazr42hgz0859malhnlp1sya2kq"))))
|
||
(build-system python-build-system)
|
||
;; Doctest 'scenario_currency_rate_update.rst' fails.
|
||
(arguments (tryton-arguments "currency" "--no-doctest"))
|
||
(native-inputs
|
||
`(,@%standard-trytond-native-inputs
|
||
("python-forex-python" ,python-forex-python)
|
||
("python-pycountry" ,python-pycountry)))
|
||
(propagated-inputs
|
||
`(("python-sql" ,python-sql)
|
||
("trytond" ,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-trytond-currency
|
||
(deprecated-package "python-trytond-currency" trytond-currency))
|
||
|
||
(define-public trytond-party
|
||
(package
|
||
(name "trytond-party")
|
||
(version "6.0.2")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_party" version))
|
||
(sha256
|
||
(base32 "0aikzpr0ambc98v76dl6xqa42b08dy3b011y33lvxjp5mcha3f7y"))))
|
||
(build-system python-build-system)
|
||
;; Doctest 'scenario_party_phone_number.rst' fails.
|
||
(arguments (tryton-arguments "party" "--no-doctest"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("python-stdnum" ,python-stdnum)
|
||
("trytond" ,trytond)
|
||
("trytond-country" ,trytond-country)))
|
||
(home-page "https://www.tryton.org/")
|
||
(synopsis "Tryton module for parties and addresses")
|
||
(description
|
||
"This package provides a Tryton module for (counter)parties and
|
||
addresses.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public python-trytond-party
|
||
(deprecated-package "python-trytond-party" trytond-party))
|
||
|
||
(define-public trytond-product
|
||
(package
|
||
(name "trytond-product")
|
||
(version "6.0.1")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_product" version))
|
||
(sha256
|
||
(base32 "1xvvqxkvzyqy6fn2sj5h3zj0g17igzwx6s18sxkdz72vqz6kpv0l"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "product"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("python-stdnum" ,python-stdnum)
|
||
("trytond" ,trytond)
|
||
("trytond-company" ,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-trytond-product
|
||
(deprecated-package "python-trytond-product" trytond-product))
|
||
|
||
(define-public trytond-purchase
|
||
(package
|
||
(name "trytond-purchase")
|
||
(version "6.0.2")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_purchase" version))
|
||
(sha256
|
||
(base32 "12drjw30ik3alckn6xrny4814vzi3ysh17wgiawiy9319yahsvay"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "purchase"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-account-invoice" ,trytond-account-invoice)
|
||
("trytond-account-invoice-stock" ,trytond-account-invoice-stock)
|
||
("trytond-account-product" ,trytond-account-product)
|
||
("trytond-company" ,trytond-company)
|
||
("trytond-currency" ,trytond-currency)
|
||
("trytond-party" ,trytond-party)
|
||
("trytond-product" ,trytond-product)
|
||
("trytond-stock" ,trytond-stock)))
|
||
(home-page "https://www.tryton.org/")
|
||
(synopsis "Tryton module for purchase")
|
||
(description
|
||
"This package provides a Tryton module that defines the Purchase model.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public python-trytond-purchase
|
||
(deprecated-package "python-trytond-purchase" trytond-purchase))
|
||
|
||
(define-public trytond-purchase-request
|
||
(package
|
||
(name "trytond-purchase-request")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_purchase_request" version))
|
||
(sha256
|
||
(base32 "0yhf3lh5b24qpk80r5pbmmswf5757bxa0s7ckl40vf6lkjkccv5i"))))
|
||
(build-system python-build-system)
|
||
;; Doctest 'scenario_purchase_request.rst' fails.
|
||
(arguments (tryton-arguments "purchase_request" "--no-doctest"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-product" ,trytond-product)
|
||
("trytond-purchase" ,trytond-purchase)))
|
||
(home-page "https://www.tryton.org/")
|
||
(synopsis "Tryton module for purchase requests")
|
||
(description
|
||
"This package provides a Tryton module that introduces the concept of
|
||
Purchase Requests which are central points to collect purchase requests
|
||
generated by other process from Tryton.")
|
||
(license license:gpl3+)))
|
||
|
||
(define-public python-trytond-purchase-request
|
||
(deprecated-package
|
||
"python-trytond-purchase-request" trytond-purchase-request))
|
||
|
||
(define-public trytond-stock
|
||
(package
|
||
(name "trytond-stock")
|
||
(version "6.0.6")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_stock" version))
|
||
(sha256
|
||
(base32 "1v6pvkwj6vhjqbz2zn0609kb7kx4g0dsn1xhvax4z2dqigh7ywpx"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "stock"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("python-simpleeval" ,python-simpleeval)
|
||
("trytond" ,trytond)
|
||
("trytond-company" ,trytond-company)
|
||
("trytond-currency" ,trytond-currency)
|
||
("trytond-party" ,trytond-party)
|
||
("trytond-product" ,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-trytond-stock
|
||
(deprecated-package "python-trytond-stock" trytond-stock))
|
||
|
||
(define-public trytond-stock-lot
|
||
(package
|
||
(name "trytond-stock-lot")
|
||
(version "6.0.0")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_stock_lot" version))
|
||
(sha256
|
||
(base32 "18cwrvnrzjk1wb765gr6hp3plpdpwz1a7cwimjhxi47iw7w5c84g"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "stock_lot"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-product" ,trytond-product)
|
||
("trytond-stock" ,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-trytond-stock-lot
|
||
(deprecated-package "python-trytond-stock-lot" trytond-stock-lot))
|
||
|
||
(define-public trytond-stock-supply
|
||
(package
|
||
(name "trytond-stock-supply")
|
||
(version "6.0.1")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (pypi-uri "trytond_stock_supply" version))
|
||
(sha256
|
||
(base32 "1p5l3yjjy6l25kk9xnhbl691l3v8gfg9fhc87jc6qszhxlqxk730"))))
|
||
(build-system python-build-system)
|
||
(arguments (tryton-arguments "stock_supply"))
|
||
(native-inputs `(,@%standard-trytond-native-inputs))
|
||
(propagated-inputs
|
||
`(("trytond" ,trytond)
|
||
("trytond-account" ,trytond-account)
|
||
("trytond-party" ,trytond-party)
|
||
("trytond-product" ,trytond-product)
|
||
("trytond-purchase" ,trytond-purchase)
|
||
("trytond-purchase-request" ,trytond-purchase-request)
|
||
("trytond-stock" ,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-stock-supply
|
||
(deprecated-package "python-trytond-stock-supply" trytond-stock-supply))
|