relatorio: init at 0.6.4

This commit is contained in:
Johannes Bornhold 2017-02-18 21:04:52 +01:00
parent a2dd4ea7d1
commit 79cba3d3ff
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ lib, fetchurl, buildPythonPackage, genshi, lxml }:
buildPythonPackage rec {
name = "relatorio-${version}";
version = "0.6.4";
src = fetchurl {
url = "mirror://pypi/r/relatorio/${name}.tar.gz";
sha256 = "0lincq79mzgazwd9gh41dybjh9c3n87r83pl8nk3j79aihyfk84z";
};
propagatedBuildInputs = [
genshi
lxml
];
meta = {
homepage = http://relatorio.tryton.org/;
description = "A templating library able to output odt and pdf files";
maintainers = with lib.maintainers; [ johbo ];
license = lib.licenses.gpl3;
};
}

View File

@ -356,6 +356,8 @@ in {
pyxml = if !isPy3k then callPackage ../development/python-modules/pyxml{ } else throw "pyxml not supported for interpreter ${python.executable}";
relatorio = callPackage ../development/python-modules/relatorio { };
rhpl = if !isPy3k then callPackage ../development/python-modules/rhpl {} else throw "rhpl not supported for interpreter ${python.executable}";
sip = callPackage ../development/python-modules/sip { };