summary refs log tree commit diff
path: root/pkgs/development/python-modules/relatorio/default.nix
blob: 4f2c3da8936e9cd3fea62561e4b28094173a8d71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
  };
}