2018-06-23 15:27:58 +02:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, genshi, lxml, python_magic }:
|
2017-02-18 21:04:52 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 11:25:35 +02:00
|
|
|
pname = "relatorio";
|
2018-10-06 12:56:20 +02:00
|
|
|
version = "0.8.1";
|
2018-06-23 15:27:58 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-10-06 12:56:20 +02:00
|
|
|
sha256 = "149a1c4c2a35d9b9e634fe80cac405bc9b4c03a42f818302362183515e7e835d";
|
2017-02-18 21:04:52 +01:00
|
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
genshi
|
|
|
|
lxml
|
2017-08-25 10:52:18 +02:00
|
|
|
python_magic
|
2017-02-18 21:04:52 +01: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;
|
|
|
|
};
|
|
|
|
}
|