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";
|
2020-02-01 16:04:17 -08:00
|
|
|
version = "0.9.1";
|
2020-01-10 12:17:37 -08:00
|
|
|
|
2018-06-23 06:27:58 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-02-01 16:04:17 -08:00
|
|
|
sha256 = "0an1yiy4pxfazrbaw4sm8ybhxqn46yzsakkl9qjklafn1j69lnza";
|
2017-02-18 12:04:52 -08:00
|
|
|
};
|
2020-01-10 12:17:37 -08:00
|
|
|
|
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
|
|
|
];
|
2020-01-10 12:17:37 -08:00
|
|
|
|
2017-02-18 12:04:52 -08:00
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://relatorio.tryton.org/";
|
2017-02-18 12:04:52 -08:00
|
|
|
description = "A templating library able to output odt and pdf files";
|
|
|
|
maintainers = with lib.maintainers; [ johbo ];
|
|
|
|
license = lib.licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|