2018-06-23 06:27:58 -07:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, genshi, lxml, python_magic }:
|
2017-02-18 12:04:52 -08:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 02:25:35 -07:00
|
|
|
pname = "relatorio";
|
2017-12-30 03:26:49 -08:00
|
|
|
version = "0.8.0";
|
2018-06-23 06:27:58 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-12-30 03:26:49 -08:00
|
|
|
sha256 = "bddf85d029c5c85a0f976d73907e14e4c3093065fe8527170c91abf0218546d9";
|
2017-02-18 12:04:52 -08:00
|
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
genshi
|
|
|
|
lxml
|
2017-08-25 01:52:18 -07:00
|
|
|
python_magic
|
2017-02-18 12:04:52 -08:00
|
|
|
];
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|