about summary refs log tree commit diff
path: root/pkgs/development/python-modules/relatorio/default.nix
blob: f92f772354360ae907e261c32ebe986af50b6416 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, fetchurl, buildPythonPackage, genshi, lxml }:

buildPythonPackage rec {
  pname = "relatorio";
  name = "${pname}-${version}";
  version = "0.7.0";
  src = fetchurl {
    url = "mirror://pypi/r/relatorio/${name}.tar.gz";
    sha256 = "efd68d96573b15c59c24a8f420ed14210ce51de535a8470d14381f2bed69d845";
  };
  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;
  };
}