2017-05-20 02:21:31 -04:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
|
2020-08-22 12:07:41 -04:00
|
|
|
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
|
2017-05-20 02:21:31 -04:00
|
|
|
;;;
|
|
|
|
;;; 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)
|
gnu: Move testing packages from python.scm to check.scm.
* gnu/packages/python.scm (python-behave-web-api, python2-behave-web-api,
python-mock, python2-mock, python-mock-2, python-nose, python2-nose,
python-nose2, python2-nose2, python-unittest2, python2-unittest2,
python-pytest, python2-pytest, python-pytest-3.0, python2-pytest-3.0,
python-pytest-cov, python2-pytest-cov, python-pytest-runner,
python2-pytest-runner, python-pytest-mock, python2-pytest-mock,
python-pytest-xdist, python2-pytest-xdist, python-scripttest,
python2-scripttest, python-testtools, python2-testtools, python-testscenarios,
python2-testscenarios, python-testresources, python2-testresources,
python-subunit, python2-subunit, python-fixtures, python2-fixtures,
python-testrepository, python2-testrepository, python-coverage,
python2-coverage, python-cov-core, python2-cov-core, python-testpath,
python2-testpath, python-testlib, python2-testlib, python-pytest-cache,
python2-pytest-cache, python-pytest-localserver, python-pytest-xprocess,
python-pytest-subtesthack, python2-pytest-subtesthack, python-hypothesis,
python2-hypothesis, python-lit, python2-lit, python-pytest-pep8,
python2-pytest-pep8, python-pytest-flakes, python2-pytest-flakes,
python2-coverage-test-runner, python-pylint, python2-pylint,
python-paramunittest, python2-python-paramunittest, python-pytest-warnings,
python2-pytest-warnings, python-pytest-capturelog, python2-pytest-capturelog,
python-pytest-catchlog, python2-pytest-catchlog, python-nosexcover,
python2-nosexcover, python-discover, python2-discover, behave, python-rednose,
python2-rednose, python-nose-randomly, python2-nose-randomly,
python-nose-timer, python2-nose-timer): Move from here...
* gnu/packages/check.scm: ...to here.
* gnu/packages/admin.scm,
gnu/packages/android.scm,
gnu/packages/backup.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/calendar.scm,
gnu/packages/dav.scm,
gnu/packages/django.scm,
gnu/packages/freedesktop.scm,
gnu/packages/haskell.scm,
gnu/packages/image.scm,
gnu/packages/irc.scm,
gnu/packages/jrnl.scm,
gnu/packages/ldc.scm,
gnu/packages/libffi.scm,
gnu/packages/mail.scm,
gnu/packages/mpd.scm,
gnu/packages/openstack.scm,
gnu/packages/package-management.scm,
gnu/packages/password-utils.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/rdf.scm,
gnu/packages/statistics.scm,
gnu/packages/storage.scm,
gnu/packages/time.scm,
gnu/packages/tls.scm,
gnu/packages/tor.scm,
gnu/packages/tryton.scm: Adjust accordingly.
2017-11-17 15:42:23 -05:00
|
|
|
#:use-module (gnu packages check)
|
gnu: Move database packages from python.scm to databases.scm.
* gnu/packages/python.scm (python-ccm, python2-ccm, python2-pysqlite,
python-sqlalchemy, python2-sqlalchemy, python-sqlalchemy-utils,
python2-sqlalchemy-utils, python-alembic, python2-alembic,
python-pickleshare, python2-pickleshare, python-apsw, python2-apsw,
python2-neo4j-driver, python2-py2neo, python-psycopg2, python2-psycopg2,
python-sadisplay, python2-sadisplay, python-mysqlclient,
python2-mysqlclient, python-hiredis, python2-hiredis, python-fakeredis,
python2-fakeredis, python-redis, python2-redis, python-rq, python2-rq,
python-trollius-redis, python2-trollius-redis, python-sqlparse,
python2-sqlparse, python-sql, python2-sql): Move from here...
* gnu/packages/databases.scm: ...to here.
* gnu/packages/tryton.scm,
gnu/packages/python-web.scm,
gnu/packages/nutrition.scm,
gnu/packages/medical.scm: Adjust accordingly.
2017-11-17 16:34:32 -05:00
|
|
|
#:use-module (gnu packages databases)
|
2018-01-22 13:25:10 -05:00
|
|
|
#:use-module (gnu packages finance)
|
2020-08-22 12:07:41 -04:00
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
#:use-module (gnu packages gnome)
|
2017-05-20 02:32:08 -04:00
|
|
|
#:use-module (gnu packages gtk)
|
2017-05-20 02:21:31 -04:00
|
|
|
#:use-module (gnu packages python)
|
2020-08-22 12:10:34 -04:00
|
|
|
#:use-module (gnu packages python-crypto)
|
gnu: Move web packages from python to python-web.
This is in part to address <https://bugs.gnu.org/27284>.
* gnu/packages/python.scm (python-httplib2, python2-httplib2)
(python-sockjs-tornado, python2-sockjs-tornado)
(python-flask-babel, python2-flask-babel)
(python-html5lib, python2-html5lib)
(python-html5lib-0.9, python2-html5lib-0.9)
(python-html5-parser, python2-html5-parser)
(python-webencodings, python2-webencodings)
(python-openid, python2-openid, python-cssutils, python2-cssutils)
(python-cssselect, python2-cssutils)
(python-openid-cla, python2-openid-cla)
(python-openid-teams, python2-openid-teams)
(python-tornado, python2-tornado)
(python-tornado-http-auth, python-terminado, python2-terminado)
(python-webob, python2-webob, python-zope-event, python2-zope-event)
(python-zope-interface, python2-zope-interface)
(python-zope-exceptions, python2-zope-exceptions)
(python-zope-testing, python2-zope-testing)
(python-zope-testrunner, python2-zope-testrunner)
(python-zope-i18nmessageid, python2-zope-i18nmessageid)
(python-zope-schema, python2-zope-schema)
(python-zope-configuration, python2-zope-configuration)
(python-zope-proxy, python2-zope-proxy)
(python-zope-location, python2-zope-location)
(python-zope-security, python2-zope-security)
(python-zope-component, python2-zope-component)
(python-ndg-httpsclient, python2-ndg-httpsclient)
(python-websocket-client, python2-websocket-client)
(python-requests-toolbelt, python2-requests-toolbelt)
(python-rauth, python2-rauth, python-urllib3, python2-urllib3)
(awscli, python-wsgiproxy2, python2-wsgiproxy2)
(python-pastedeploy, python2-pastedeploy)
(python-webtest, python2-webtest, python-flask, python2-flask)
(python-flast-wtf, python2-flask-wtf)
(python-flask-multistatic, python2-flask-multistatic)
(python-cookies, python2-cookies)
(python-responses, python2-responses)
(python-geventhttpclient, python2-geventhttpclient)
(python-requests-oauthlib, python2-requests-oauthlib)
(python-url, python2-url, python-cachecontrol, python2-cachecontrol)
(python-betamax, python2-betamax)
(python-betamax-matchers, python2-betamax-matchers)
(python-s3transfer, python2-s3transfer)
(python-flask-restful, python-flask-basicauth)
(python-flask-sqlalchemy, python-flask-restplus)
(python-flask-restful-swagger, python-htmlmin, python2-htmlmin)
(python-flask-htmlmin, python2-flask-htmlmin)
(python-flask-login, python2-flask-login)
(python-oauth2client, python-flask-oidc)
(python-webassets, python-cssmin, python2-cssmin)
(python-elasticsearch, python2-elasticsearch)
(python-flask-script, python2-flask-script)
(python-flask-migrate, python2-flask-migrate)
(python-genshi, python2-genshi)
(python-flask-principal, python2-flask-principal)
(python-flask-httpauth, python2-flask-httpauth)
(python-uritemplate, python2-uritemplate): Move to...
* gnu/packages/python-web.scm: ... here. New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/admin.scm, gnu/packages/backup.scm,
gnu/packages/dav.scm, gnu/packages/django.scm,
gnu/packages/docker.scm, gnu/packages/ebook.scm,
gnu/packages/logging.scm, gnu/packages/mail.scm,
gnu/packages/music.scm, gnu/packages/openstack.scm,
gnu/packages/package-management.scm, gnu/packages/rdf.scm,
gnu/packages/tls.scm, gnu/packages/tor.scm,
gnu/packages/tryton.scm, gnu/packages/version-control.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm: Adjust accordingly.
2017-11-13 17:24:11 -05:00
|
|
|
#:use-module (gnu packages python-web)
|
gnu: Separate Python core packages from the rest.
* gnu/packages/python.scm: Move hundreds of package definitions from here...
* gnu/packages/python-xyz.scm: ...to this new module.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/android.scm,
gnu/packages/audio.scm,
gnu/packages/backup.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/calendar.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/cluster.scm,
gnu/packages/compression.scm,
gnu/packages/connman.scm,
gnu/packages/crypto.scm,
gnu/packages/cups.scm,
gnu/packages/databases.scm,
gnu/packages/dav.scm,
gnu/packages/direct-connect.scm,
gnu/packages/disk.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/docker.scm,
gnu/packages/ebook.scm,
gnu/packages/elf.scm,
gnu/packages/emacs.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm,
gnu/packages/finance.scm,
gnu/packages/fltk.scm,
gnu/packages/fontutils.scm,
gnu/packages/freedesktop.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/geo.scm,
gnu/packages/gl.scm,
gnu/packages/glib.scm,
gnu/packages/gnome.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/gtk.scm,
gnu/packages/ham-radio.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/irc.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/kde-frameworks.scm,
gnu/packages/key-mon.scm,
gnu/packages/libffi.scm,
gnu/packages/libreoffice.scm,
gnu/packages/libusb.scm,
gnu/packages/lirc.scm,
gnu/packages/logging.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/mate.scm,
gnu/packages/maths.scm,
gnu/packages/medical.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mp3.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/nutrition.scm,
gnu/packages/openldap.scm,
gnu/packages/openstack.scm,
gnu/packages/package-management.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/photo.scm,
gnu/packages/polkit.scm,
gnu/packages/protobuf.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/qt.scm,
gnu/packages/rdf.scm,
gnu/packages/ruby.scm,
gnu/packages/search.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/simulation.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/storage.scm,
gnu/packages/sync.scm,
gnu/packages/terminals.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tls.scm,
gnu/packages/tor.scm,
gnu/packages/tryton.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/virtualization.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wicd.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xorg.scm: Update module references.
2019-01-15 08:21:30 -05:00
|
|
|
#:use-module (gnu packages python-xyz)
|
gnu: Move date/time packages from python.scm to time.scm.
* gnu/packages/python.scm (python-pytz, python2-pytz, python-dateutil,
python2-dateutil, python-parsedatetime, python2-parsedatetime,
python-tzlocal, python-isodate, python2-isodate, python-iso8601,
python2-iso8601, python-monotonic, python2-monotonic, python-pyrfc3339,
python2-pyrfc3339, python-arrow, python2-arrow, python-aniso8601,
python2-aniso8601): Move from here...
* gnu/packages/time.scm: ...to here.
* gnu/packages/calendar.scm,
gnu/packages/check.scm,
gnu/packages/django.scm,
gnu/packages/ebook.scm,
gnu/packages/gnome.scm,
gnu/packages/irc.scm,
gnu/packages/jrnl.scm,
gnu/packages/mail.scm,
gnu/packages/openstack.scm,
gnu/packages/package-management.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/rdf.scm,
gnu/packages/statistics.scm,
gnu/packages/tls.scm,
gnu/packages/tryton.scm,
gnu/packages/version-control.scm: Adjust accordingly.
2017-11-18 05:58:44 -05:00
|
|
|
#:use-module (gnu packages time)
|
2020-01-15 14:19:26 -05:00
|
|
|
#:use-module (gnu packages xml)
|
2017-05-20 02:21:31 -04:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2020-08-22 12:10:36 -04:00
|
|
|
#:use-module (guix utils)
|
2017-05-20 02:21:31 -04:00
|
|
|
#:use-module (guix build-system python))
|
|
|
|
|
2018-01-22 13:11:59 -05:00
|
|
|
(define-public python-trytond
|
2017-05-20 02:21:31 -04:00
|
|
|
(package
|
2018-01-22 13:11:59 -05:00
|
|
|
(name "python-trytond")
|
2020-08-22 12:10:34 -04:00
|
|
|
(version "5.6.5")
|
2017-05-20 02:21:31 -04:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
2018-01-22 12:40:52 -05:00
|
|
|
(uri (pypi-uri "trytond" version))
|
2017-05-20 02:21:31 -04:00
|
|
|
(sha256
|
2020-08-22 12:10:34 -04:00
|
|
|
(base32 "1n76ccv2x5csz80p42dav8rhzg2m14wdi3bj1pizhw8x2hxxfwx3"))))
|
2017-05-20 02:21:31 -04:00
|
|
|
(build-system python-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("python-dateutil" ,python-dateutil)
|
|
|
|
("python-genshi" ,python-genshi)
|
2020-08-22 12:10:34 -04:00
|
|
|
("python-lxml" ,python-lxml)
|
2018-01-22 12:40:52 -05:00
|
|
|
("python-magic" ,python-magic)
|
2020-08-22 12:10:34 -04:00
|
|
|
("python-passlib" ,python-passlib)
|
|
|
|
("python-polib" ,python-polib)
|
2017-05-20 02:21:31 -04:00
|
|
|
("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)))
|
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'check 'preparations
|
|
|
|
(lambda _
|
2018-01-22 16:09:27 -05:00
|
|
|
(setenv "DB_NAME" ":memory:")
|
2020-08-22 12:10:34 -04:00
|
|
|
(setenv "HOME" "/tmp")
|
2018-01-22 16:09:27 -05:00
|
|
|
#t)))))
|
2017-05-20 02:21:31 -04:00
|
|
|
(home-page "https://www.tryton.org/")
|
|
|
|
(synopsis "Server component of Tryton")
|
|
|
|
(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+)))
|
2017-05-20 02:32:08 -04:00
|
|
|
|
|
|
|
(define-public tryton
|
|
|
|
(package
|
|
|
|
(name "tryton")
|
2020-08-22 12:07:41 -04:00
|
|
|
(version "5.6.3")
|
2017-05-20 02:32:08 -04:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
2018-01-22 12:42:14 -05:00
|
|
|
(uri (pypi-uri "tryton" version))
|
2017-05-20 02:32:08 -04:00
|
|
|
(sha256
|
2020-08-22 12:07:41 -04:00
|
|
|
(base32 "1dghr6x5wga3sizjvj261xndpl38si5hwiz3llm2bhmg33nplfh7"))))
|
2017-05-20 02:32:08 -04:00
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
2020-08-22 12:07:41 -04:00
|
|
|
`(#: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)))
|
|
|
|
(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)))
|
2017-05-20 02:32:08 -04:00
|
|
|
(home-page "https://www.tryton.org/")
|
|
|
|
(synopsis "Client component of Tryton")
|
2020-08-22 12:07:41 -04:00
|
|
|
(description
|
|
|
|
"This package is the client component of Tryton.")
|
2017-05-20 02:32:08 -04:00
|
|
|
(license license:gpl3+)))
|
2018-01-22 12:58:45 -05:00
|
|
|
|
2018-01-22 13:02:00 -05:00
|
|
|
(define-public python-trytond-country
|
|
|
|
(package
|
2020-08-22 12:10:36 -04:00
|
|
|
(name "python-trytond-country")
|
|
|
|
(version "5.6.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "trytond_country" version))
|
|
|
|
(sha256
|
|
|
|
(base32 "0k1xw5r2pfd5mvvg3pn3vavwjwpgmm5i6nsc8x421znk4gvvns78"))))
|
|
|
|
(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)
|
|
|
|
;; Doctest contains one test that requires internet access.
|
|
|
|
(invoke "python" runtest "-m" "country" "--no-doctest")))))))
|
|
|
|
(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-pycountry" ,python-pycountry)
|
|
|
|
("python-trytond" ,python-trytond)))
|
|
|
|
(home-page "http://www.tryton.org/")
|
|
|
|
(synopsis "Tryton module with countries")
|
|
|
|
(description
|
|
|
|
"This package provides a Tryton module with countries.")
|
|
|
|
(license license:gpl3+)))
|
2018-01-22 13:02:00 -05:00
|
|
|
|
2018-01-22 13:25:10 -05:00
|
|
|
(define-public python-trytond-party
|
|
|
|
(package
|
|
|
|
(name "python-trytond-party")
|
2020-08-22 12:10:37 -04:00
|
|
|
(version "5.6.0")
|
2018-01-22 13:25:10 -05:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "trytond_party" version))
|
|
|
|
(sha256
|
2020-08-22 12:10:37 -04:00
|
|
|
(base32 "0wh7g1g67g4vwxm797ra6fkfvmd3w77vl7nxj76y856cy217gbzp"))))
|
2018-01-22 13:25:10 -05:00
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
2020-08-22 12:10:37 -04:00
|
|
|
`(#: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)
|
|
|
|
;; Doctest 'scenario_party_phone_number.rst' fails.
|
|
|
|
(invoke "python" runtest "-m" "party" "--no-doctest")))))))
|
|
|
|
(native-inputs
|
|
|
|
`(("python" ,python-minimal-wrapper)
|
2018-01-22 13:25:10 -05:00
|
|
|
("python-dateutil" ,python-dateutil)
|
|
|
|
("python-genshi" ,python-genshi)
|
2020-08-22 12:10:37 -04:00
|
|
|
("python-lxml" ,python-lxml)
|
2018-01-22 13:25:10 -05:00
|
|
|
("python-magic" ,python-magic)
|
2020-08-22 12:10:37 -04:00
|
|
|
("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-stnum" ,python-stdnum)
|
|
|
|
("python-trytond" ,python-trytond)
|
|
|
|
("python-trytond-country" ,python-trytond-country)))
|
|
|
|
(home-page "https://www.tryton.org/")
|
|
|
|
(synopsis "Tryton module for parties and addresses")
|
2018-01-22 13:25:10 -05:00
|
|
|
(description
|
|
|
|
"This package provides a Tryton module for (counter)parties and
|
|
|
|
addresses.")
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
2020-08-24 18:20:12 -04:00
|
|
|
(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+)))
|
|
|
|
|
2020-08-24 18:20:13 -04:00
|
|
|
(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+)))
|
|
|
|
|
2020-08-24 18:20:14 -04:00
|
|
|
(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+)))
|
|
|
|
|
2020-08-24 18:20:16 -04:00
|
|
|
(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+)))
|
|
|
|
|
2020-08-26 09:49:53 -04:00
|
|
|
(define-public python-trytond-analytic-account
|
|
|
|
(package
|
|
|
|
(name "python-trytond-analytic-account")
|
|
|
|
(version "5.6.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "trytond_analytic_account" version))
|
|
|
|
(sha256
|
|
|
|
(base32 "02hv3mmhadz248vy4azrw8rs2mwgsixd4cnzsm82z15gjmfxl34q"))))
|
|
|
|
(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" "analytic_account")))))))
|
|
|
|
(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-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 analytic accounting")
|
|
|
|
(description
|
|
|
|
"This package provides a Tryton module that adds the fundamentals
|
|
|
|
required to analyse accounting using multiple different axes.")
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
2020-08-26 09:51:49 -04:00
|
|
|
(define-public python-trytond-account-product
|
|
|
|
(package
|
|
|
|
(name "python-trytond-account-product")
|
|
|
|
(version "5.6.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "trytond_account_product" version))
|
|
|
|
(sha256
|
|
|
|
(base32 "0iyk07adixf37jlvn7n27ac12hk23zx09w4s78dr9sfp0lsf8vv8"))))
|
|
|
|
(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_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-sql" ,python-sql)
|
|
|
|
("python-werkzeug" ,python-werkzeug)
|
|
|
|
("python-wrapt" ,python-wrapt)))
|
|
|
|
(propagated-inputs
|
|
|
|
`(("python-trytond" ,python-trytond)
|
|
|
|
("python-trytond-account"
|
|
|
|
,python-trytond-account)
|
|
|
|
("python-trytond-analytic-account"
|
|
|
|
,python-trytond-analytic-account)
|
|
|
|
("python-trytond-company"
|
|
|
|
,python-trytond-company)
|
|
|
|
("python-trytond-product"
|
|
|
|
,python-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+)))
|
|
|
|
|
2020-08-26 09:51:50 -04:00
|
|
|
(define-public python-trytond-account-invoice
|
|
|
|
(package
|
|
|
|
(name "python-trytond-account-invoice")
|
|
|
|
(version "5.6.1")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "trytond_account_invoice" version))
|
|
|
|
(sha256
|
|
|
|
(base32 "0ic5zghg50m6jwdr88y4vgzy58g1h17b63sbhh61brys1cp2dxhc"))))
|
|
|
|
(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_invoice")))))))
|
|
|
|
(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-sql" ,python-sql)
|
|
|
|
("python-trytond" ,python-trytond)
|
|
|
|
("python-trytond-account"
|
|
|
|
,python-trytond-account)
|
|
|
|
("python-trytond-account-product"
|
|
|
|
,python-trytond-account-product)
|
|
|
|
("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 invoicing")
|
|
|
|
(description
|
|
|
|
"This package provides a Tryton module that adds the invoice, payment
|
|
|
|
term.")
|
|
|
|
(license license:gpl3+)))
|
|
|
|
|
2020-08-24 18:20:17 -04:00
|
|
|
(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+)))
|
|
|
|
|
2020-08-24 18:20:18 -04:00
|
|
|
(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+)))
|
|
|
|
|
2020-08-26 09:51:51 -04:00
|
|
|
(define-public python-trytond-account-invoice-stock
|
|
|
|
(package
|
|
|
|
(name "python-trytond-account-invoice-stock")
|
|
|
|
(version "5.6.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri
|
|
|
|
"trytond_account_invoice_stock"
|
|
|
|
version))
|
|
|
|
(sha256
|
|
|
|
(base32 "1ky39ab8ax7hla5d9qgmp0p4ra4q6n29xc3wba5qdw3ij8wkn96f"))))
|
|
|
|
(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_invoice_stock")))))))
|
|
|
|
(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-account-invoice"
|
|
|
|
,python-trytond-account-invoice)
|
|
|
|
("python-trytond-product"
|
|
|
|
,python-trytond-product)
|
|
|
|
("python-trytond-stock" ,python-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+)))
|
|
|
|
|
2020-08-26 09:51:54 -04:00
|
|
|
(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+)))
|
|
|
|
|
2020-08-26 09:51:52 -04:00
|
|
|
(define-public python-trytond-purchase
|
|
|
|
(package
|
|
|
|
(name "python-trytond-purchase")
|
|
|
|
(version "5.6.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "trytond_purchase" version))
|
|
|
|
(sha256
|
|
|
|
(base32 "0znjxhhwqlz4sq96ah9g28mvw4w83rhp022h6vihnz64z2ad3p3z"))))
|
|
|
|
(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" "purchase")))))))
|
|
|
|
(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-account-invoice"
|
|
|
|
,python-trytond-account-invoice)
|
|
|
|
("python-trytond-account-invoice-stock"
|
|
|
|
,python-trytond-account-invoice-stock)
|
|
|
|
("python-trytond-account-product"
|
|
|
|
,python-trytond-account-product)
|
|
|
|
("python-trytond-company"
|
|
|
|
,python-trytond-company)
|
|
|
|
("python-trytond-currency"
|
|
|
|
,python-trytond-currency)
|
|
|
|
("python-trytond-party" ,python-trytond-party)
|
|
|
|
("python-trytond-product"
|
|
|
|
,python-trytond-product)
|
|
|
|
("python-trytond-stock" ,python-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+)))
|
|
|
|
|
2020-08-26 09:51:53 -04:00
|
|
|
(define-public python-trytond-purchase-request
|
|
|
|
(package
|
|
|
|
(name "python-trytond-purchase-request")
|
|
|
|
(version "5.6.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "trytond_purchase_request" version))
|
|
|
|
(sha256
|
|
|
|
(base32 "15r1x3jzr83rna1vfpans277785dpmgjr7989icav602nkyhhx0x"))))
|
|
|
|
(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)
|
|
|
|
;; Doctest 'scenario_purchase_request.rst' fails.
|
|
|
|
(invoke "python" runtest
|
|
|
|
"-m" "purchase_request" "--no-doctest")))))))
|
|
|
|
(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-product"
|
|
|
|
,python-trytond-product)
|
|
|
|
("python-trytond-purchase"
|
|
|
|
,python-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+)))
|
|
|
|
|
2018-01-22 12:58:45 -05:00
|
|
|
(define-public python-proteus
|
|
|
|
(package
|
|
|
|
(name "python-proteus")
|
2020-08-22 12:10:35 -04:00
|
|
|
(version "5.6.0")
|
2018-01-22 12:58:45 -05:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "proteus" version))
|
|
|
|
(sha256
|
2020-08-22 12:10:35 -04:00
|
|
|
(base32 "0kxac5pkps243wf0xbmbd1g5bml96xl94j88y6yyzm093vyli150"))))
|
2018-01-22 12:58:45 -05:00
|
|
|
(build-system python-build-system)
|
2020-08-22 12:10:35 -04:00
|
|
|
;; Tests require python-trytond-party which requires python-proteus.
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f))
|
2018-01-22 12:58:45 -05:00
|
|
|
(propagated-inputs
|
2020-08-22 12:10:35 -04:00
|
|
|
`(("python-dateutil" ,python-dateutil)))
|
2018-01-22 12:58:45 -05:00
|
|
|
(home-page "http://www.tryton.org/")
|
2020-08-22 12:10:35 -04:00
|
|
|
(synopsis "Library to access a Tryton server as a client")
|
2018-01-22 12:58:45 -05:00
|
|
|
(description
|
|
|
|
"This package provides a library to access Tryton server as a client.")
|
|
|
|
(license license:lgpl3+)))
|