about summary refs log tree commit diff
path: root/pkgs/tools/misc/trac/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/trac/default.nix')
-rw-r--r--pkgs/tools/misc/trac/default.nix56
1 files changed, 0 insertions, 56 deletions
diff --git a/pkgs/tools/misc/trac/default.nix b/pkgs/tools/misc/trac/default.nix
deleted file mode 100644
index 1d0f9a5d8288f..0000000000000
--- a/pkgs/tools/misc/trac/default.nix
+++ /dev/null
@@ -1,56 +0,0 @@
-{ lib
-, buildPythonApplication
-, fetchPypi
-, Babel
-, docutils
-, pygments
-, pytz
-, jinja2
-, pysqlite
-, psycopg2
-, pymysql
-, git
-, setuptools
-}:
-
-
-buildPythonApplication rec {
-  pname = "trac";
-  version = "1.4.1";
-
-  src = fetchPypi {
-    inherit version;
-    pname = "Trac";
-    sha256 = "0d61ypn0j9wb8119bj3pj7s8swfjykdl0sz398p92k9bvxh4dayz";
-  };
-
-  prePatch = ''
-    # Removing the date format tests as they are outdated
-    substituteInPlace trac/util/tests/__init__.py \
-      --replace "suite.addTest(datefmt.test_suite())" ""
-    # Removing Pygments tests as per https://trac.edgewall.org/ticket/13229
-    substituteInPlace trac/mimeview/tests/__init__.py \
-      --replace "suite.addTest(pygments.test_suite())" ""
-  '';
-
-  propagatedBuildInputs = [
-    Babel
-    docutils
-    pygments
-    pytz
-    jinja2
-    pysqlite
-    psycopg2
-    pymysql
-    git
-    setuptools
-  ];
-
-  meta = with lib; {
-    description = "Integrated SCM, wiki, issue tracker and project environment";
-    homepage = "https://trac.edgewall.org/";
-    license = licenses.bsd3;
-    maintainers = with maintainers; [ mmahut ];
-    platforms = platforms.linux;
-  };
-}