2019-11-01 17:20:52 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonApplication
|
|
|
|
, fetchPypi
|
|
|
|
, Babel
|
|
|
|
, docutils
|
|
|
|
, pygments
|
|
|
|
, pytz
|
|
|
|
, jinja2
|
|
|
|
, pysqlite
|
|
|
|
, psycopg2
|
|
|
|
, pymysql
|
|
|
|
, git
|
|
|
|
, setuptools
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "trac";
|
|
|
|
version = "1.4";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit version;
|
|
|
|
pname = "Trac";
|
|
|
|
sha256 = "1cg51rg0vb9vf23wgn28z3szlxhwnxprj5m0mvibqyypi123bvx1";
|
|
|
|
};
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
# Removing the date format tests as they are outdated
|
|
|
|
substituteInPlace trac/util/tests/__init__.py \
|
|
|
|
--replace "suite.addTest(datefmt.test_suite())" ""
|
2020-02-01 17:18:29 +00:00
|
|
|
# Removing Pygments tests as per https://trac.edgewall.org/ticket/13229
|
|
|
|
substituteInPlace trac/mimeview/tests/__init__.py \
|
|
|
|
--replace "suite.addTest(pygments.test_suite())" ""
|
2019-11-01 17:20:52 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|