about summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorEnno Lohmeier <enno@nerdworks.de>2020-06-26 12:24:42 +0200
committerEnno Lohmeier <enno@nerdworks.de>2020-06-26 12:25:08 +0200
commit63bcf4f4ecd5c75765ef9818d3b2e77d8b0df35c (patch)
tree38df964b2f5fee945e5bb94be9f328eeba8fc7e4 /pkgs/applications/office
parent218c8509c6ce25945c2c253d15e9542033d4de44 (diff)
trytond: convert to python package
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/trytond/default.nix60
1 files changed, 0 insertions, 60 deletions
diff --git a/pkgs/applications/office/trytond/default.nix b/pkgs/applications/office/trytond/default.nix
deleted file mode 100644
index 15d5fa6748acd..0000000000000
--- a/pkgs/applications/office/trytond/default.nix
+++ /dev/null
@@ -1,60 +0,0 @@
-{ stdenv
-, python3Packages
-, withPostgresql ? true
-}:
-
-with stdenv.lib;
-
-python3Packages.buildPythonApplication rec {
-  pname = "trytond";
-  version = "5.6.2";
-  src = python3Packages.fetchPypi {
-    inherit pname version;
-    sha256 = "0mlfl34zmmqrwip39mvhkk0h6dsljqwff2mk1ldahm253d4vzflp";
-  };
-
-  # Tells the tests which database to use
-  DB_NAME = ":memory:";
-
-  buildInputs = with python3Packages; [
-    mock
-  ];
-  propagatedBuildInputs = with python3Packages; [
-    lxml
-    relatorio
-    genshi
-    dateutil
-    polib
-    python-sql
-    werkzeug
-    wrapt
-    passlib
-
-    # extra dependencies
-    bcrypt
-    pydot
-    python-Levenshtein
-    simplejson
-    html2text
-  ] ++ stdenv.lib.optional withPostgresql psycopg2;
-
-  # If unset, trytond will try to mkdir /homeless-shelter
-  preCheck = ''
-    export HOME=$(mktemp -d)
-  '';
-
-  meta = {
-    description = "The server of the Tryton application platform";
-    longDescription = ''
-      The server for Tryton, a three-tier high-level general purpose
-      application platform under the license GPL-3 written in Python and using
-      PostgreSQL as database engine.
-
-      It is the core base of a complete business solution providing
-      modularity, scalability and security.
-    '';
-    homepage = "http://www.tryton.org/";
-    license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ udono johbo ];
-  };
-}